#else #if -> #elif
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 07:04:42 +0000 (07:04 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Aug 2003 07:04:42 +0000 (07:04 +0000)
lib/xstrtoimax.c
lib/xstrtoumax.c

index 138be7cf6fbbc4da6bff80687e1775427236a36d..94c65778641025587f652b76f5a2262f315cd7ce 100644 (file)
@@ -1,5 +1,5 @@
 /* xstrtoimax.c -- A more useful interface to strtoimax.
-   Copyright 2001-2002 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2003 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 #if HAVE_INTTYPES_H
 # include <inttypes.h>
-#else
-# if HAVE_STDINT_H
-#  include <stdint.h>
-# endif
+#elif HAVE_STDINT_H
+# include <stdint.h>
 #endif
 
 #define __strtol strtoimax
index 3237f853341271ebba978b17e6ee27ea65060227..59d6ecf5cdc1795a81263eee45c751fbd3e7960f 100644 (file)
@@ -1,5 +1,5 @@
 /* xstrtoumax.c -- A more useful interface to strtoumax.
-   Copyright 1999, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2003 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 #if HAVE_INTTYPES_H
 # include <inttypes.h>
-#else
-# if HAVE_STDINT_H
-#  include <stdint.h>
-# endif
+#elif HAVE_STDINT_H
+# include <stdint.h>
 #endif
 
 #define __strtol strtoumax