Pull in stdint.h here, if we have it. Some systems keep

the INT*_MAX macros there.

llvm-svn: 9577
This commit is contained in:
Brian Gaeke 2003-10-29 04:25:48 +00:00
parent 9d2020003b
commit 0a82d78d8c
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,10 @@
// happening when system headers or C++ STL headers include stdint.h before
// we define it here, we define it on the g++ command line (in Makefile.rules).
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif