blob: 40670d9dd23f947fc04a3a3fc1eeb4fae108b057 [file] [log] [blame]
Guido van Rossum60a578a1993-12-24 10:32:48 +00001#ifndef Py_MYTIME_H
2#define Py_MYTIME_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00008Copyright (c) 2000, BeOpen.com.
9Copyright (c) 1995-2000, Corporation for National Research Initiatives.
10Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
11All rights reserved.
Guido van Rossum60a578a1993-12-24 10:32:48 +000012
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000013See the file "Misc/COPYRIGHT" for information on usage and
14redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum60a578a1993-12-24 10:32:48 +000015******************************************************************/
16
17/* Include file instead of <time.h> and/or <sys/time.h> */
18
19#ifdef TIME_WITH_SYS_TIME
20#include <sys/time.h>
21#include <time.h>
22#else /* !TIME_WITH_SYS_TIME */
23#ifdef HAVE_SYS_TIME_H
24#include <sys/time.h>
25#else /* !HAVE_SYS_TIME_H */
26#include <time.h>
27#endif /* !HAVE_SYS_TIME_H */
28#endif /* !TIME_WITH_SYS_TIME */
29
30#ifdef __cplusplus
31}
32#endif
33#endif /* !Py_MYTIME_H */