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