diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-01-18 11:17:23 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-01-18 11:17:23 +0000 |
commit | 222076e972e7be52f9b4206c15087d45d04a5777 (patch) | |
tree | 966202ce852cb21151696ad5f52ae21bb9559738 /compiler-rt/lib/interception | |
parent | 04468962ab332822dc6032344d94ea0c1244046e (diff) | |
download | bcm5719-llvm-222076e972e7be52f9b4206c15087d45d04a5777.tar.gz bcm5719-llvm-222076e972e7be52f9b4206c15087d45d04a5777.zip |
[sanitizer] Common *scanf interceptors.
llvm-svn: 172805
Diffstat (limited to 'compiler-rt/lib/interception')
-rw-r--r-- | compiler-rt/lib/interception/interception.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception.h b/compiler-rt/lib/interception/interception.h index e5f8916c186..030bda7cba0 100644 --- a/compiler-rt/lib/interception/interception.h +++ b/compiler-rt/lib/interception/interception.h @@ -25,6 +25,8 @@ // the standard system types (e.g. SSIZE_T instead of ssize_t) typedef __sanitizer::uptr SIZE_T; typedef __sanitizer::sptr SSIZE_T; +typedef __sanitizer::sptr PTRDIFF_T; +typedef __sanitizer::s64 INTMAX_T; typedef __sanitizer::u64 OFF_T; typedef __sanitizer::u64 OFF64_T; |