make call_pyc_file static
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 11bd029..4b58bb4 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -403,7 +403,7 @@
 	return v;
 }
 
-object *
+static object *
 run_pyc_file(fp, filename, globals, locals)
 	FILE *fp;
 	char *filename;
@@ -534,6 +534,9 @@
 	char *msg;
 {
 	fprintf(stderr, "Fatal Python error: %s\n", msg);
+#ifdef macintosh
+	for (;;);
+#endif
 	abort();
 }