summaryrefslogtreecommitdiffstats
path: root/Mac/Include
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:24:58 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:24:58 (GMT)
commit54956722e5342ce0ebece1eaad85cca3e7791250 (patch)
tree6890c3d7e5d2d8dc545b1af0d94f2f0bc5d3caa1 /Mac/Include
parent9e1be97ddf0037f19204a47b85db0b0f4e8b4c20 (diff)
downloadcpython-54956722e5342ce0ebece1eaad85cca3e7791250.zip
cpython-54956722e5342ce0ebece1eaad85cca3e7791250.tar.gz
cpython-54956722e5342ce0ebece1eaad85cca3e7791250.tar.bz2
Modified for (optional) use of MSL
Diffstat (limited to 'Mac/Include')
-rw-r--r--Mac/Include/macdefs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Mac/Include/macdefs.h b/Mac/Include/macdefs.h
index 71f73b1..061233b 100644
--- a/Mac/Include/macdefs.h
+++ b/Mac/Include/macdefs.h
@@ -11,14 +11,14 @@
#include <pascal.h>
#endif
+#include <errno.h>
+#include <string.h>
#ifdef __MWERKS__
#include "errno_unix.h"
#include <Strings.h>
#define c2pstr C2PStr
#define p2cstr P2CStr
#endif
-#include <errno.h>
-#include <string.h>
/* We may be able to use a std routine in think, don't know */
unsigned char *Pstring(char *);
@@ -29,8 +29,10 @@ unsigned char *Pstring(char *);
/* Universal constants: */
#define MAXPATH 256
+#ifndef __MSL__
#define TRUE 1
#define FALSE 0
+#endif
#ifndef NULL
#define NULL 0
#endif