bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-gnulib] strtoimax.c #else #if -> #elif (merge from coreutils)


From: Paul Eggert
Subject: [Bug-gnulib] strtoimax.c #else #if -> #elif (merge from coreutils)
Date: 15 Aug 2003 23:22:11 -0700
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

I installed this:

2003-08-15  Jim Meyering  <address@hidden>

        * strtoimax.c: Use #elif rather than #else #if.

Index: strtoimax.c
===================================================================
RCS file: /cvsroot/gnulib/gnulib/lib/strtoimax.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -p -u -r1.7 -r1.8
--- strtoimax.c 18 Jun 2003 05:52:19 -0000      1.7
+++ strtoimax.c 16 Aug 2003 06:19:01 -0000      1.8
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]