From 1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 20 May 1997 15:57:25 +0000 Subject: [PATCH] Use #ifdef in stead of #if (Jack) --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b758344f310..a946b0d4d7d 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 #endif