blob: 07a2480edc3d1ee3179b8396eb413b57565fcb60 [file] [log] [blame]
Guido van Rossum60a578a1993-12-24 10:32:48 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossum60a578a1993-12-24 10:32:48 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum60a578a1993-12-24 10:32:48 +00009******************************************************************/
10
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +000011/***************************************
12THIS FILE IS OBSOLETE
13USE "pyport.h" INSTEAD
14***************************************/
15
Peter Schneider-Kamp25f68942000-07-31 22:19:30 +000016#ifndef Py_MYTIME_H
17#define Py_MYTIME_H
18#ifdef __cplusplus
19extern "C" {
20#endif
21
Guido van Rossum60a578a1993-12-24 10:32:48 +000022/* Include file instead of <time.h> and/or <sys/time.h> */
23
24#ifdef TIME_WITH_SYS_TIME
25#include <sys/time.h>
26#include <time.h>
27#else /* !TIME_WITH_SYS_TIME */
28#ifdef HAVE_SYS_TIME_H
29#include <sys/time.h>
30#else /* !HAVE_SYS_TIME_H */
31#include <time.h>
32#endif /* !HAVE_SYS_TIME_H */
33#endif /* !TIME_WITH_SYS_TIME */
34
35#ifdef __cplusplus
36}
37#endif
38#endif /* !Py_MYTIME_H */