summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-07-11 21:14:21 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-07-11 21:14:21 (GMT)
commit5e80a7579918dca87a31725e379cb3ea79e2a7a5 (patch)
treeb34882c457f16093eed919f9324374d0f62e5f95 /Mac
parent85152b93cb5f910f7345d623e9c057aa1d2ca6e0 (diff)
downloadcpython-5e80a7579918dca87a31725e379cb3ea79e2a7a5.zip
cpython-5e80a7579918dca87a31725e379cb3ea79e2a7a5.tar.gz
cpython-5e80a7579918dca87a31725e379cb3ea79e2a7a5.tar.bz2
Added a declaration of fileno() if we use GUSI. Not sure whether it should go here or in pyport.h really...
Diffstat (limited to 'Mac')
-rw-r--r--Mac/mwerks/mwerks_small_config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Mac/mwerks/mwerks_small_config.h b/Mac/mwerks/mwerks_small_config.h
index 37d2982..5b99aa5 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 <ansi_prefix.mac.h>
#endif
+/* Missing declarations. Should these go to pyport.h? */
+#ifdef USE_GUSI2
+#include <stdio.h>
+extern int fileno(FILE *);
+#endif