Getting rid of all the code inside #ifdef macintosh too.
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 9ed53e2..66461a8 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -8,7 +8,7 @@
 
 #include <ctype.h>
 
-#if !defined(__STDC__) && !defined(macintosh)
+#if !defined(__STDC__)
 extern double fmod(double, double);
 extern double pow(double, double);
 #endif
diff --git a/Objects/object.c b/Objects/object.c
index 33e146a..5b61d84 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -3,10 +3,6 @@
 
 #include "Python.h"
 
-#ifdef macintosh
-#include "macglue.h"
-#endif
-
 #ifdef Py_REF_DEBUG
 long _Py_RefTotal;
 #endif