Include macglue.h for some function prototypes, and renamed a few
mac-specific functions to have a PyMac_ name.
diff --git a/Python/ceval.c b/Python/ceval.c
index 0bf5d00..bcdd98f 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -23,6 +23,10 @@
 #include "eval.h"
 #include "opcode.h"
 
+#ifdef macintosh
+#include "macglue.h"
+#endif
+
 #include <ctype.h>
 
 #ifdef HAVE_LIMITS_H