mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
17 lines
244 B
C
17 lines
244 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>
|
|
#else
|
|
# if HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
# else
|
|
# include <time.h>
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* _AC_TIME_H */
|