make call_pyc_file static

This commit is contained in:
Guido van Rossum 1995-01-26 00:40:38 +00:00
parent 164d4ff0e5
commit 8ae87c0489

View file

@ -403,7 +403,7 @@ run_node(n, filename, globals, locals)
return v; return v;
} }
object * static object *
run_pyc_file(fp, filename, globals, locals) run_pyc_file(fp, filename, globals, locals)
FILE *fp; FILE *fp;
char *filename; char *filename;
@ -534,6 +534,9 @@ fatal(msg)
char *msg; char *msg;
{ {
fprintf(stderr, "Fatal Python error: %s\n", msg); fprintf(stderr, "Fatal Python error: %s\n", msg);
#ifdef macintosh
for (;;);
#endif
abort(); abort();
} }