From: Guido van Rossum Date: Thu, 5 Dec 1996 21:54:17 +0000 (+0000) Subject: Make gcc -Wall happy. X-Git-Tag: v1.5a1~891 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=685a38ea945431d1bad20ee07222a24b4553e346;p=thirdparty%2FPython%2Fcpython.git Make gcc -Wall happy. --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index f5e5c5974c77..2ba63bd16f7a 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -36,6 +36,10 @@ PERFORMANCE OF THIS SOFTWARE. #include "structmember.h" #include "ceval.h" +#ifdef HAVE_UNISTD_H +#include +#endif + #ifdef THINK_C #define HAVE_FOPENRF #endif