Bump version to 0.9.1.
[python/dscho.git] / Include / mytime.h
blob07a2480edc3d1ee3179b8396eb413b57565fcb60
1 /***********************************************************
2 Copyright (c) 2000, BeOpen.com.
3 Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4 Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5 All rights reserved.
7 See the file "Misc/COPYRIGHT" for information on usage and
8 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9 ******************************************************************/
11 /***************************************
12 THIS FILE IS OBSOLETE
13 USE "pyport.h" INSTEAD
14 ***************************************/
16 #ifndef Py_MYTIME_H
17 #define Py_MYTIME_H
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
22 /* Include file instead of <time.h> and/or <sys/time.h> */
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 */
35 #ifdef __cplusplus
37 #endif
38 #endif /* !Py_MYTIME_H */