summaryrefslogtreecommitdiffstats
path: root/Modules/operator.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-08 19:12:05 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-08 19:12:05 (GMT)
commitec185bde77b391c4fb3b87b629dd22ad2550bb5a (patch)
tree1597ba5ba2e7e397f06197b4f5036e820c9c0acc /Modules/operator.c
parent8a170cbed6fb30005658fad4a5f42192b4843dae (diff)
downloadcpython-ec185bde77b391c4fb3b87b629dd22ad2550bb5a.zip
cpython-ec185bde77b391c4fb3b87b629dd22ad2550bb5a.tar.gz
cpython-ec185bde77b391c4fb3b87b629dd22ad2550bb5a.tar.bz2
Added hack to get it to compile on AIX.
Diffstat (limited to 'Modules/operator.c')
-rw-r--r--Modules/operator.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/operator.c b/Modules/operator.c
index 6e0db3d..3a34241 100644
--- a/Modules/operator.c
+++ b/Modules/operator.c
@@ -110,6 +110,11 @@ used for special class methods; variants without leading and trailing\n\
if(-1 == (r=AOP(a1,a2))) return NULL; \
return PyInt_FromLong(r); }
+#ifdef _AIX
+#define __div __aix_div
+#define __abs __aix_abs
+#endif
+
spami(isCallable , PyCallable_Check)
spami(isNumberType , PyNumber_Check)
spami(truth , PyObject_IsTrue)