Use #elif rather than #else #if.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 06:19:01 +0000 (06:19 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 06:19:01 +0000 (06:19 +0000)
lib/strtoimax.c

index 3e12cc637a4a536f425b71c0cd23f6a901ac4e0d..555f2d5b5c43d35f35bd25f05fad259d02888401 100644 (file)
 
 #if HAVE_INTTYPES_H
 # include <inttypes.h>
-#else
-# if HAVE_STDINT_H
-#  include <stdint.h>
-# endif
+#elif HAVE_STDINT_H
+# include <stdint.h>
 #endif
 
 #if HAVE_STDLIB_H