diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:05:12 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:05:12 +0000 |
commit | 1d05cd8d8ec0526e5fd16e541b4e92a7c64dfede (patch) | |
tree | 9af456c2a297a7a8a665455a6fdbefa817dc9a30 /Modules/socketmodule.c | |
parent | 6298dc843edf03eab2579779bdb000baa9cb3b55 (diff) | |
download | cpython-1d05cd8d8ec0526e5fd16e541b4e92a7c64dfede.tar.gz |
Include <unistd.h> in Python.h. Fixes #500924.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 124353ef91..25912a4e6b 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -115,10 +115,6 @@ Socket methods: #include "pythread.h" #endif -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif - #if defined(PYCC_VACPP) #include <types.h> #include <io.h> |