]> git.sur5r.net Git - openldap/blob - include/ac/time.h
Kill off #elif in ldap/include/. K&R does not support it.
[openldap] / include / ac / time.h
1 /* Generic time.h */
2
3 #ifndef _AC_TIME_H
4 #define _AC_TIME_H
5
6 #if TIME_WITH_SYS_TIME
7 # include <sys/time.h>
8 # include <time.h>
9 #else
10   /* Do not use #elif, not all non-ANSI compilers support it. */
11 # if HAVE_SYS_TIME_H
12 #  include <sys/time.h>
13 # else
14 #  include <time.h>
15 # endif
16 #endif
17
18 #endif /* _AC_TIME_H */