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
1 changed files with 4 additions and 1 deletions

View 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();
}