From 0e241f3e22d11083c7a37e21c7625762a7280e80 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 16 Aug 2003 06:19:01 +0000 Subject: [PATCH] Use #elif rather than #else #if. --- lib/strtoimax.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/strtoimax.c b/lib/strtoimax.c index 3e12cc637..555f2d5b5 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 -- 2.11.0