diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:05:12 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:05:12 (GMT) |
commit | cdc445122208cb90a59a468a7396b227e223c43a (patch) | |
tree | ad9ca70705ab2c5a952aeeae91f0160394f98604 /Modules/timemodule.c | |
parent | edb60a7ba9daa607a8021f2823e6bbd8fc942711 (diff) | |
download | cpython-cdc445122208cb90a59a468a7396b227e223c43a.zip cpython-cdc445122208cb90a59a468a7396b227e223c43a.tar.gz cpython-cdc445122208cb90a59a468a7396b227e223c43a.tar.bz2 |
Include <unistd.h> in Python.h. Fixes #500924.
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index bcc53e0..a5d81fe 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -24,10 +24,6 @@ #include <io.h> #endif -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif - #ifdef HAVE_FTIME #include <sys/timeb.h> #if !defined(MS_WINDOWS) && !defined(PYOS_OS2) |