diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-01 23:38:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-01 23:38:13 (GMT) |
commit | e9fb3d6db36f58ed3e9a06197fd25dfd9761320f (patch) | |
tree | 0c09e571b4c4e31cbc1d8a148269dacb77c7bbc5 /Mac | |
parent | 0de279b9cdb084c97cf401961a2a4def018cc088 (diff) | |
download | cpython-e9fb3d6db36f58ed3e9a06197fd25dfd9761320f.zip cpython-e9fb3d6db36f58ed3e9a06197fd25dfd9761320f.tar.gz cpython-e9fb3d6db36f58ed3e9a06197fd25dfd9761320f.tar.bz2 |
Include Carbon/Carbon.h if we're on OSX.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/mlte/_Mltemodule.c | 2 | ||||
-rw-r--r-- | Mac/Modules/mlte/mltesupport.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/mlte/_Mltemodule.c b/Mac/Modules/mlte/_Mltemodule.c index 7e74e1f..f09ae5c 100644 --- a/Mac/Modules/mlte/_Mltemodule.c +++ b/Mac/Modules/mlte/_Mltemodule.c @@ -19,7 +19,7 @@ #ifdef WITHOUT_FRAMEWORKS #include <MacTextEditor.h> #else -#include <xxxx.h> +#include <Carbon/Carbon.h> #endif /* For now we declare them forward here. They'll go to mactoolbox later */ diff --git a/Mac/Modules/mlte/mltesupport.py b/Mac/Modules/mlte/mltesupport.py index e4418cb..3a11e88 100644 --- a/Mac/Modules/mlte/mltesupport.py +++ b/Mac/Modules/mlte/mltesupport.py @@ -23,7 +23,7 @@ includestuff = includestuff + """ #ifdef WITHOUT_FRAMEWORKS #include <MacTextEditor.h> #else -#include <xxxx.h> +#include <Carbon/Carbon.h> #endif /* For now we declare them forward here. They'll go to mactoolbox later */ |