diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2015-06-24 17:23:13 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2015-06-24 17:23:13 +0000 |
commit | 8454044b1f62ee4ec16d4d13ac92d4fbd98b19e7 (patch) | |
tree | 84af4fd77cf22034754bc9a70d734468112eb8b5 /compiler-rt/lib/safestack/safestack.cc | |
parent | 54c9f3da03151c9b0efd1e2d1ead071bfa45a91a (diff) | |
download | bcm5719-llvm-8454044b1f62ee4ec16d4d13ac92d4fbd98b19e7.tar.gz bcm5719-llvm-8454044b1f62ee4ec16d4d13ac92d4fbd98b19e7.zip |
SafeStack: Add #include of <stdint.h>.
Should fix the FreeBSD build.
llvm-svn: 240555
Diffstat (limited to 'compiler-rt/lib/safestack/safestack.cc')
-rw-r--r-- | compiler-rt/lib/safestack/safestack.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/safestack/safestack.cc b/compiler-rt/lib/safestack/safestack.cc index 6e1d00b9cc3..0e52c2ae1df 100644 --- a/compiler-rt/lib/safestack/safestack.cc +++ b/compiler-rt/lib/safestack/safestack.cc @@ -17,6 +17,7 @@ #include <limits.h> #include <pthread.h> #include <stddef.h> +#include <stdint.h> #include <sys/resource.h> #include <sys/user.h> |