From b64a18142c265f9c760e995b7e400d571434eccf Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 2 Jul 1997 12:57:48 +0000 Subject: [PATCH] Fixed #if-bug. Thanks to RVDM. --- include/yconfig.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/yconfig.h b/include/yconfig.h index b8d1fab..3fa446b 100644 --- a/include/yconfig.h +++ b/include/yconfig.h @@ -3,15 +3,15 @@ /* System includes */ -#ifdef _VMS_ +#ifndef _VMS_ -#elif WINDOWS +#ifdef WINDOWS #ifdef YNETINCLUDE #include #endif -#else +#else /* #ifdef WINDOWS */ /* * Standard Unix headers */ @@ -32,6 +32,7 @@ #endif #endif +#endif /* ifndef _VMS_ */ #include -- 1.7.10.4