diff options
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 1290977..31b0dde 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -46,11 +46,6 @@ corresponding Unix manual entries for more information on calls."; #include <grp.h> #endif -/* pick up declaration of confstr on some systems? */ -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif /* HAVE_UNISTD_H */ - /* Various compilers have only certain posix functions */ /* XXX Gosh I wish these were all moved into pyconfig.h */ #if defined(PYCC_VACPP) && defined(PYOS_OS2) @@ -112,10 +107,6 @@ corresponding Unix manual entries for more information on calls."; #ifndef _MSC_VER -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif - #if defined(sun) && !defined(__SVR4) /* SunOS 4.1.4 doesn't have prototypes for these: */ extern int rename(const char *, const char *); |