changeset 4559:bdca64d74831

Use #elif rather than #else #if.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 16 Aug 2003 06:19:01 +0000
parents e7c388835e7c
children ff249a314eac
files lib/strtoimax.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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