Guarded include of stdint.h and inttypes.h

pull/24/head
Tatsuhiro Tsujikawa 2012-07-04 00:00:24 +09:00
parent 98e1c6c580
commit aa944f4ef6
1 changed files with 7 additions and 2 deletions

View File

@ -78,9 +78,14 @@
// use C99 limit macros
#define __STDC_LIMIT_MACROS
// included here for compatibility issues with old compiler/libraries.
#include <stdint.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif // HAVE_STDINT_H
// For PRId64
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#endif // HAVE_INTTYPES_H
#endif // D_COMMON_H