diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-19 12:57:22 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-19 12:57:22 (GMT) |
commit | 25e0c7948790e8476a6cfe42ac1b46ea36aeda6e (patch) | |
tree | 176cbdaf65f811a7d7e9e74ebfea741ac1e50afb | |
parent | 741e0378e44567c76d268c755851446aa641fcfe (diff) | |
download | cpython-25e0c7948790e8476a6cfe42ac1b46ea36aeda6e.zip cpython-25e0c7948790e8476a6cfe42ac1b46ea36aeda6e.tar.gz cpython-25e0c7948790e8476a6cfe42ac1b46ea36aeda6e.tar.bz2 |
Another include Carbon/Carbon.h
-rw-r--r-- | Mac/Python/getapplbycreator.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Python/getapplbycreator.c b/Mac/Python/getapplbycreator.c index f5e4212..8c0b00f 100644 --- a/Mac/Python/getapplbycreator.c +++ b/Mac/Python/getapplbycreator.c @@ -41,9 +41,13 @@ PERFORMANCE OF THIS SOFTWARE. ** routine, origin unknown. */ +#ifdef WITHOUT_FRAMEWORKS #include <Types.h> #include <Files.h> #include <Errors.h> +#else +#include <Carbon/Carbon.h> +#endif #include "getapplbycreator.h" |