Minor fix: some platforms require both inttypes.h and stdint.h.

This commit is contained in:
Tim Kientzle 2009-04-17 00:57:11 +00:00
parent 06f39cd345
commit bf89aeae5e

View File

@ -67,7 +67,8 @@
/* Try to get standard C99-style integer type definitions. */
#if HAVE_INTTYPES_H
#include <inttypes.h>
#elif HAVE_STDINT_H
#endif
#if HAVE_STDINT_H
#include <stdint.h>
#endif