diff options
author | John Criswell <criswell@uiuc.edu> | 2004-07-19 16:12:29 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-07-19 16:12:29 +0000 |
commit | 7ed43ad3ab29be753b514966476c76206d0c0648 (patch) | |
tree | e7c52c4ddc94112fafaf463ca139c22640877d59 /include/llvm/Support | |
parent | 8640f4e666086cc6e7447dc164105e428e6cb81a (diff) | |
download | external_llvm-7ed43ad3ab29be753b514966476c76206d0c0648.zip external_llvm-7ed43ad3ab29be753b514966476c76206d0c0648.tar.gz external_llvm-7ed43ad3ab29be753b514966476c76206d0c0648.tar.bz2 |
Added support for stdint.h. It is now automatically included by
DataTypes.h. So far, it doesn't seem to break Linux, Solaris, or MacOS X.
This should automatically include it for those people who need it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15006 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/DataTypes.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/DataTypes.h.in b/include/llvm/Support/DataTypes.h.in index b1f14b2..1802584 100644 --- a/include/llvm/Support/DataTypes.h.in +++ b/include/llvm/Support/DataTypes.h.in @@ -33,6 +33,7 @@ // Note that <inttypes.h> includes <stdint.h>, if this is a C99 system. @INCLUDE_INTTYPES_H@ @INCLUDE_SYS_TYPES_H@ +@INCLUDE_STDINT_H@ #else // Visual C++ doesn't provide standard integer headers, but it does provide // built-in data types. |