From: Jack Jansen Date: Tue, 11 Jul 2000 21:14:21 +0000 (+0000) Subject: Added a declaration of fileno() if we use GUSI. Not sure whether it should go here... X-Git-Tag: v2.0b1~885 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e80a7579918dca87a31725e379cb3ea79e2a7a5;p=thirdparty%2FPython%2Fcpython.git Added a declaration of fileno() if we use GUSI. Not sure whether it should go here or in pyport.h really... --- diff --git a/Mac/mwerks/mwerks_small_config.h b/Mac/mwerks/mwerks_small_config.h index 37d2982cd2eb..5b99aa5dbec7 100644 --- a/Mac/mwerks/mwerks_small_config.h +++ b/Mac/mwerks/mwerks_small_config.h @@ -33,3 +33,8 @@ #define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */ #include #endif +/* Missing declarations. Should these go to pyport.h? */ +#ifdef USE_GUSI2 +#include +extern int fileno(FILE *); +#endif