blob: 2933247ab9b20c5f343ab47f797397e38fd99aab [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 Rossum5799b521995-01-04 19:06:22 +00008Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9The Netherlands.
Guido van Rossum60a578a1993-12-24 10:32:48 +000010
11 All Rights Reserved
12
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000013Copyright (c) 2000, BeOpen.com.
14Copyright (c) 1995-2000, Corporation for National Research Initiatives.
15Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
16All rights reserved.
Guido van Rossum60a578a1993-12-24 10:32:48 +000017
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000018See the file "Misc/COPYRIGHT" for information on usage and
19redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum60a578a1993-12-24 10:32:48 +000020
21******************************************************************/
22
23/* Include file instead of <time.h> and/or <sys/time.h> */
24
25#ifdef TIME_WITH_SYS_TIME
26#include <sys/time.h>
27#include <time.h>
28#else /* !TIME_WITH_SYS_TIME */
29#ifdef HAVE_SYS_TIME_H
30#include <sys/time.h>
31#else /* !HAVE_SYS_TIME_H */
32#include <time.h>
33#endif /* !HAVE_SYS_TIME_H */
34#endif /* !TIME_WITH_SYS_TIME */
35
36#ifdef __cplusplus
37}
38#endif
39#endif /* !Py_MYTIME_H */