diff options
-rw-r--r-- | Modules/rotormodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/rotormodule.c b/Modules/rotormodule.c index 65c1758..5c7d582 100644 --- a/Modules/rotormodule.c +++ b/Modules/rotormodule.c @@ -58,8 +58,12 @@ NOTE: you MUST use the SAME key in rotor.newrotor() #include "Python.h" #include "mymath.h" +#ifndef TRUE #define TRUE 1 +#endif +#ifndef FALSE #define FALSE 0 +#endif typedef struct { PyObject_HEAD |