diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 15:32:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 15:32:46 (GMT) |
commit | 37249c55248d8e355e3184d597f89aace42798ab (patch) | |
tree | 3e4e762f3b06792bed9b31382ceb3d238642f770 /Mac/Modules/gestaltmodule.c | |
parent | f387e2d12b18039156d0651d323069a0b2e63d63 (diff) | |
download | cpython-37249c55248d8e355e3184d597f89aace42798ab.zip cpython-37249c55248d8e355e3184d597f89aace42798ab.tar.gz cpython-37249c55248d8e355e3184d597f89aace42798ab.tar.bz2 |
WITHOUT_FRAMEWORKS conditional code bites the dust: this was for
pre-carbon MacOS9 support.
Diffstat (limited to 'Mac/Modules/gestaltmodule.c')
-rw-r--r-- | Mac/Modules/gestaltmodule.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Mac/Modules/gestaltmodule.c b/Mac/Modules/gestaltmodule.c index 11946a5..8097de8 100644 --- a/Mac/Modules/gestaltmodule.c +++ b/Mac/Modules/gestaltmodule.c @@ -27,12 +27,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "Python.h" #include "macglue.h" -#ifdef WITHOUT_FRAMEWORKS -#include <Types.h> -#include <Gestalt.h> -#else #include <Carbon/Carbon.h> -#endif static PyObject * gestalt_gestalt(PyObject *self, PyObject *args) |