Commit a7bd0b0f authored by Jack Jansen's avatar Jack Jansen

Declare fileno() with prototype if USE_GUSI2 defined. This isn't really the...

Declare fileno() with prototype if USE_GUSI2 defined. This isn't really the right place, but it will have to do for now.
parent 506d5acf
......@@ -30,3 +30,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
......@@ -35,3 +35,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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment