Mercurial > hg > octave-nkf > gnulib-hg
comparison lib/strtoimax.c @ 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 | c6450308f123 |
children | ce37d22a271f |
comparison
equal
deleted
inserted
replaced
4558:e7c388835e7c | 4559:bdca64d74831 |
---|---|
21 # include <config.h> | 21 # include <config.h> |
22 #endif | 22 #endif |
23 | 23 |
24 #if HAVE_INTTYPES_H | 24 #if HAVE_INTTYPES_H |
25 # include <inttypes.h> | 25 # include <inttypes.h> |
26 #else | 26 #elif HAVE_STDINT_H |
27 # if HAVE_STDINT_H | 27 # include <stdint.h> |
28 # include <stdint.h> | |
29 # endif | |
30 #endif | 28 #endif |
31 | 29 |
32 #if HAVE_STDLIB_H | 30 #if HAVE_STDLIB_H |
33 # include <stdlib.h> | 31 # include <stdlib.h> |
34 #endif | 32 #endif |