diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-07 07:43:41 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-07 07:43:41 +0000 |
commit | 3e3d0be7ded21f3c6c734ef3a133face86c0db25 (patch) | |
tree | 393f988610d26f8a67e7f6fa617750896069aefe /compiler-rt/lib/interception | |
parent | 8268785f44dd24968414504b7f8b88f16e2dd7f7 (diff) | |
download | bcm5719-llvm-3e3d0be7ded21f3c6c734ef3a133face86c0db25.tar.gz bcm5719-llvm-3e3d0be7ded21f3c6c734ef3a133face86c0db25.zip |
[sanitizer] Add a missing header.
llvm-svn: 174594
Diffstat (limited to 'compiler-rt/lib/interception')
-rw-r--r-- | compiler-rt/lib/interception/interception_type_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception_type_test.cc b/compiler-rt/lib/interception/interception_type_test.cc index c26df4f411d..5656c25e429 100644 --- a/compiler-rt/lib/interception/interception_type_test.cc +++ b/compiler-rt/lib/interception/interception_type_test.cc @@ -16,6 +16,7 @@ #include "interception.h" #include <sys/types.h> +#include <stdint.h> COMPILER_CHECK(sizeof(SIZE_T) == sizeof(size_t)); COMPILER_CHECK(sizeof(SSIZE_T) == sizeof(ssize_t)); |