summaryrefslogtreecommitdiff
path: root/lib/strtoimax.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2003-08-16 06:19:01 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2003-08-16 06:19:01 +0000
commit0e241f3e22d11083c7a37e21c7625762a7280e80 (patch)
tree93756747580237c1777c9a51f2dd7ad17fe0823d /lib/strtoimax.c
parent29ad412dbc385c088c5ad61b6f1856966c477b7f (diff)
downloadgnulib-0e241f3e22d11083c7a37e21c7625762a7280e80.tar.gz
Use #elif rather than #else #if.
Diffstat (limited to 'lib/strtoimax.c')
-rw-r--r--lib/strtoimax.c6
1 files changed, 2 insertions, 4 deletions
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 <inttypes.h>
-#else
-# if HAVE_STDINT_H
-# include <stdint.h>
-# endif
+#elif HAVE_STDINT_H
+# include <stdint.h>
#endif
#if HAVE_STDLIB_H