Guido van Rossum | 60a578a | 1993-12-24 10:32:48 +0000 | [diff] [blame] | 1 | #ifndef Py_MYTIME_H |
| 2 | #define Py_MYTIME_H |
| 3 | #ifdef __cplusplus |
| 4 | extern "C" { |
| 5 | #endif |
| 6 | |
| 7 | /*********************************************************** |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 8 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 9 | The Netherlands. |
Guido van Rossum | 60a578a | 1993-12-24 10:32:48 +0000 | [diff] [blame] | 10 | |
| 11 | All Rights Reserved |
| 12 | |
Guido van Rossum | fd71b9e | 2000-06-30 23:50:40 +0000 | [diff] [blame^] | 13 | Copyright (c) 2000, BeOpen.com. |
| 14 | Copyright (c) 1995-2000, Corporation for National Research Initiatives. |
| 15 | Copyright (c) 1990-1995, Stichting Mathematisch Centrum. |
| 16 | All rights reserved. |
Guido van Rossum | 60a578a | 1993-12-24 10:32:48 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | fd71b9e | 2000-06-30 23:50:40 +0000 | [diff] [blame^] | 18 | See the file "Misc/COPYRIGHT" for information on usage and |
| 19 | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
Guido van Rossum | 60a578a | 1993-12-24 10:32:48 +0000 | [diff] [blame] | 20 | |
| 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 */ |