diff options
author | Guido van Rossum <guido@python.org> | 1997-05-20 15:57:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-20 15:57:25 (GMT) |
commit | 1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5 (patch) | |
tree | b4da1ba773e1c61dccec3cb25a0db4c303883e52 | |
parent | e34b7de3998388e83952cbcb92aa1417d29b12b6 (diff) | |
download | cpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.zip cpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.tar.gz cpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.tar.bz2 |
Use #ifdef in stead of #if (Jack)
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b758344..a946b0d 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -48,7 +48,7 @@ Data members: #include "osdefs.h" -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H #include <unistd.h> #endif |