diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1994-12-14 13:38:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1994-12-14 13:38:13 (GMT) |
commit | fea75336aac7de44abad089f91023c938b2559d6 (patch) | |
tree | 97707031ee26e2348fe12264e4b71c4870437df0 | |
parent | edf585579c637fc70ff80fc33d9bc4251313ce99 (diff) | |
download | cpython-fea75336aac7de44abad089f91023c938b2559d6.zip cpython-fea75336aac7de44abad089f91023c938b2559d6.tar.gz cpython-fea75336aac7de44abad089f91023c938b2559d6.tar.bz2 |
Added support for MetroWerks CodeWarrior compiler
-rw-r--r-- | Mac/Include/config.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/Include/config.h b/Mac/Include/config.h index e04fde6..221dc1b 100644 --- a/Mac/Include/config.h +++ b/Mac/Include/config.h @@ -1,4 +1,4 @@ -/* config.h for Macintosh THINK C 6.0 and MPW 3.2. */ +/* config.h for Macintosh THINK C 6.0, CodeWarrior 4 and MPW 3.2. */ #ifdef MPW /* This must be is MPW 3.x */ @@ -93,7 +93,11 @@ /* Define if your compiler botches static forward declarations (as it does on SCI ODT 3.0) */ +#ifdef __MWERKS__ +#define BAD_STATIC_FORWARD +#else /* MPW and THINK */ #undef BAD_STATIC_FORWARD +#endif /* Define to `long' if <time.h> doesn't define. */ #undef clock_t |