diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:13:24 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:13:24 (GMT) |
commit | 0d21e644096c700d9cf87038e736dd5ae0f738af (patch) | |
tree | 8c277ea2814272a01b3e2705aec3e4284e72f24d /Python/sysmodule.c | |
parent | 2380a9e13fbcc0b79bdf66869c7589c740236539 (diff) | |
download | cpython-0d21e644096c700d9cf87038e736dd5ae0f738af.zip cpython-0d21e644096c700d9cf87038e736dd5ae0f738af.tar.gz cpython-0d21e644096c700d9cf87038e736dd5ae0f738af.tar.bz2 |
Include <unistd.h> in Python.h. Fixes #500924.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ff49adc..cdc728c 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -20,10 +20,6 @@ Data members: #include "osdefs.h" -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif - #ifdef MS_COREDLL extern void *PyWin_DLLhModule; /* A string loaded from the DLL at startup: */ |