From: Guido van Rossum Date: Tue, 20 May 1997 15:57:25 +0000 (+0000) Subject: Use #ifdef in stead of #if (Jack) X-Git-Tag: v1.5a3~528 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1254d79dfaf5cb4e91dae8a14aa6046dca0a4ce5;p=python Use #ifdef in stead of #if (Jack) --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b758344f31..a946b0d4d7 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