openldap/include/ac/time.h

16 lines
228 B
C
Raw Normal View History

1998-10-25 09:41:42 +08:00
/* Generic time.h */
#ifndef _AC_TIME_H
#define _AC_TIME_H
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#elif HAVE_SYS_TIME_H
# include <sys/time.h>
1998-10-25 09:41:42 +08:00
#else
# include <time.h>
1998-10-25 09:41:42 +08:00
#endif
#endif /* _AC_TIME_H */