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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=191174

View File

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