]> git.sur5r.net Git - openldap/blob - include/ac/time.h
Vienna Bulk Commit
[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 # ifdef HAVE_SYS_TIMEB_H
21 #  include <sys/timeb.h>
22 # endif
23 #else
24 # include <time.h>
25 #endif
26
27 #endif /* _AC_TIME_H */