openldap/include/ac/time.h
1998-10-25 01:41:42 +00:00

16 lines
228 B
C

/* 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>
#else
# include <time.h>
#endif
#endif /* _AC_TIME_H */