Fix -Wundef warnings for patterns #if HAVE

* See [Feature #17752]
* Using this to detect them:
  git grep -P 'if\s+HAVE' | grep -Pv 'HAVE_LONG_LONG|/ChangeLog|HAVE_TYPEOF'
This commit is contained in:
Benoit Daloze 2021-04-29 15:12:44 +02:00
parent fa7a712d46
commit 0764d323d8
Notes: git 2021-05-04 21:57:20 +09:00
9 changed files with 14 additions and 14 deletions

View file

@ -59,7 +59,7 @@
#endif
#if defined(TM_IN_SYS_TIME) || !defined(GAWK)
#include <sys/types.h>
#if HAVE_SYS_TIME_H
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#endif