diff options
| author | Asiri Rathnayake <asiri.rathnayake@arm.com> | 2016-10-13 14:32:24 +0000 |
|---|---|---|
| committer | Asiri Rathnayake <asiri.rathnayake@arm.com> | 2016-10-13 14:32:24 +0000 |
| commit | 8295d54868a6b8a60a68e81b4c4a92d2803f0d0c (patch) | |
| tree | cb439dc08a2418f88b31b84065f7927f8826c70c /libunwind/src | |
| parent | 24b6ef7792d6d22576c95b982bdb37dc9e609a42 (diff) | |
| download | bcm5719-llvm-8295d54868a6b8a60a68e81b4c4a92d2803f0d0c.tar.gz bcm5719-llvm-8295d54868a6b8a60a68e81b4c4a92d2803f0d0c.zip | |
[libunwind] Add missing <stdint.h> include. NFC.
This missing include seems to cause compilation failures on older MacOS
versions (< 10.9). This is because r270692 has introduced uint64_t into
config.h without including this header.
Patch from: Jeremy Huddleston Sequoia (jeremyhu@apple.com)
llvm-svn: 284125
Diffstat (limited to 'libunwind/src')
| -rw-r--r-- | libunwind/src/config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libunwind/src/config.h b/libunwind/src/config.h index 8743f538e7c..f61ded84954 100644 --- a/libunwind/src/config.h +++ b/libunwind/src/config.h @@ -16,6 +16,7 @@ #include <assert.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> // Define static_assert() unless already defined by compiler. |

