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 3e12cc6..555f2d5 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