From: Paul Eggert Date: Sat, 16 Aug 2003 06:19:01 +0000 (+0000) Subject: Use #elif rather than #else #if. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e241f3e22d11083c7a37e21c7625762a7280e80;p=pspp Use #elif rather than #else #if. --- diff --git a/lib/strtoimax.c b/lib/strtoimax.c index 3e12cc637a..555f2d5b5c 100644 --- a/lib/strtoimax.c +++ b/lib/strtoimax.c @@ -23,10 +23,8 @@ #if HAVE_INTTYPES_H # include -#else -# if HAVE_STDINT_H -# include -# endif +#elif HAVE_STDINT_H +# include #endif #if HAVE_STDLIB_H