summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2015-06-24 17:23:13 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2015-06-24 17:23:13 +0000
commita6c41a7c04e1bf88301da02452076813a7b714f7 (patch)
tree75146d1861376a3dc51809c65abb307190888909
parentead837a8db42bf020f3adad5a21372d384cafdd6 (diff)
downloadcompiler-rt-a6c41a7c04e1bf88301da02452076813a7b714f7.tar.gz
SafeStack: Add #include of <stdint.h>.
Should fix the FreeBSD build. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@240555 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/safestack/safestack.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/safestack/safestack.cc b/lib/safestack/safestack.cc
index 6e1d00b9c..0e52c2ae1 100644
--- a/lib/safestack/safestack.cc
+++ b/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>