]> git.sur5r.net Git - openldap/blob - include/ac/time.h
3da6ddfe07728777941cfc3835b08f04d87abceb
[openldap] / include / ac / time.h
1 /* Generic time.h */
2 /*
3  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #ifndef _AC_TIME_H
13 #define _AC_TIME_H
14
15 #if TIME_WITH_SYS_TIME
16 # include <sys/time.h>
17 # include <time.h>
18 #elif HAVE_SYS_TIME_H
19 # include <sys/time.h>
20 #else
21 # include <time.h>
22 #endif
23
24 #ifdef WIN32
25 #include <sys/types.h>
26 #include <sys/timeb.h>
27 #endif
28
29 #endif /* _AC_TIME_H */