forked from OSchip/llvm-project
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:
parent
9d2020003b
commit
0a82d78d8c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue