diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2010-07-21 18:48:59 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-21 18:48:59 +0000 |
| commit | b552a019ddcee11b13eba737800ca7f6a406befc (patch) | |
| tree | fa53e0ece46f343ce2c42774fe31c648214610ff | |
| parent | c43695da7caefd1922fe6f715a9ef02cdb94b13c (diff) | |
| download | external_llvm-b552a019ddcee11b13eba737800ca7f6a406befc.zip external_llvm-b552a019ddcee11b13eba737800ca7f6a406befc.tar.gz external_llvm-b552a019ddcee11b13eba737800ca7f6a406befc.tar.bz2 | |
Use System/DataTypes.h instead of stdint.h, which isn't portable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109026 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | include/llvm/Support/MachO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/MachO.h b/include/llvm/Support/MachO.h index 473bf11..4c13177 100644 --- a/include/llvm/Support/MachO.h +++ b/include/llvm/Support/MachO.h @@ -14,7 +14,7 @@ #ifndef LLVM_SUPPORT_MACHO_H #define LLVM_SUPPORT_MACHO_H -#include <stdint.h> +#include "llvm/System/DataTypes.h" // NOTE: The enums in this file are intentially named to be different than those // in the headers in /usr/include/mach (on darwin systems) to avoid conflicts |
