From 8ae87c0489e718f9bfa2c78d145628f79f9cdc81 Mon Sep 17 00:00:00 2001
From: Guido van Rossum <guido@python.org>
Date: Thu, 26 Jan 1995 00:40:38 +0000
Subject: make call_pyc_file static

---
 Python/pythonrun.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

(limited to 'Python/pythonrun.c')

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