From 9ae898b415ad0758dbe1e1cb43f48f60bf8dfab0 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 11 Jul 2000 21:16:03 +0000 Subject: ANSIfication step 2: make sure all needed prototypes are available, and all needed header files included. --- Mac/Python/macgetcompiler.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Mac/Python/macgetcompiler.c') diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index 226fa29e85..39f3a2b191 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -32,6 +32,7 @@ PERFORMANCE OF THIS SOFTWARE. /* Return a string representing the compiler name */ #include "config.h" +#include "Python.h" #ifdef __MWERKS__ #ifdef USE_GUSI1 @@ -75,8 +76,8 @@ PERFORMANCE OF THIS SOFTWARE. #endif #endif -char * -Py_GetCompiler() +const char * +Py_GetCompiler(void) { return COMPILER; } -- cgit v1.2.1