diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-11 21:59:16 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-11 21:59:16 +0000 |
commit | cbf630f0a916b6e34295379db01a6e2950e05012 (patch) | |
tree | 126400ff619ca4c0130d0d8b974eb8f7efeef6be /Python/import.c | |
parent | 28fc880e9ac15c0f8f704b5862bdc38be0985d99 (diff) | |
download | cpython-git-cbf630f0a916b6e34295379db01a6e2950e05012.tar.gz |
Include macglue.h for some function prototypes, and renamed a few
mac-specific functions to have a PyMac_ name.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index f1efccb871..99c811fb84 100644 --- a/Python/import.c +++ b/Python/import.c @@ -698,7 +698,7 @@ write_compiled_module(co, cpathname, mtime) if (Py_VerboseFlag) PySys_WriteStderr("# wrote %s\n", cpathname); #ifdef macintosh - setfiletype(cpathname, 'Pyth', 'PYC '); + PyMac_setfiletype(cpathname, 'Pyth', 'PYC '); #endif } |