Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.

This commit is contained in:
2011-01-18 15:47:18 +00:00
parent 413e9f9579
commit 0d426a755f
5 changed files with 30 additions and 3 deletions

View File

@ -20,7 +20,13 @@
/* for uint32_t */
#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#endif
/** The source code release timestamp */