Commit 8ae87c04 authored by Guido van Rossum's avatar Guido van Rossum

make call_pyc_file static

parent 164d4ff0
......@@ -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();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment