summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-11-19 15:24:47 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-11-19 15:24:47 +0000
commite34f184cf8f15384ead96d31f53ae8ab83e328e5 (patch)
tree78e9990e5b905c9710b8d61202cc2ce7f2c6600a /Python/modsupport.c
parent1f208bf24cd36ad108eac3a91ee2b163e501ecf8 (diff)
downloadcpython-e34f184cf8f15384ead96d31f53ae8ab83e328e5.tar.gz
Getting rid of support for the ancient Apple MPW compiler.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index ec85511ebd..f26d7b8eca 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -3,11 +3,7 @@
#include "Python.h"
-#ifdef MPW /* MPW pushes 'extended' for float and double types with varargs */
-typedef extended va_double;
-#else
typedef double va_double;
-#endif
/* Package context -- the full module name for package imports */
char *_Py_PackageContext = NULL;