summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-20 15:57:25 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-20 15:57:25 (GMT)
commit1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5 (patch)
treeb4da1ba773e1c61dccec3cb25a0db4c303883e52 /Python/sysmodule.c
parente34b7de3998388e83952cbcb92aa1417d29b12b6 (diff)
downloadcpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.zip
cpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.tar.gz
cpython-1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5.tar.bz2
Use #ifdef in stead of #if (Jack)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
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