diff options
author | Guido van Rossum <guido@python.org> | 1995-01-26 00:40:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-26 00:40:38 (GMT) |
commit | 8ae87c0489e718f9bfa2c78d145628f79f9cdc81 (patch) | |
tree | 2b879c180f01329ca7e9dada88c193e1fda0acb5 /Python | |
parent | 164d4ff0e59f1288566b97d0ffb38d7803cf1493 (diff) | |
download | cpython-8ae87c0489e718f9bfa2c78d145628f79f9cdc81.zip cpython-8ae87c0489e718f9bfa2c78d145628f79f9cdc81.tar.gz cpython-8ae87c0489e718f9bfa2c78d145628f79f9cdc81.tar.bz2 |
make call_pyc_file static
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 11bd029..4b58bb4 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(); } |