]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
make call_pyc_file static
authorGuido van Rossum <guido@python.org>
Thu, 26 Jan 1995 00:40:38 +0000 (00:40 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 26 Jan 1995 00:40:38 +0000 (00:40 +0000)
Python/pythonrun.c

index 11bd029a9cd3376a263c5eee9b3f787c833405aa..4b58bb4c488a73dc0cf514c17e26246fe42277cc 100644 (file)
@@ -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();
 }