diff options
| author | Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> | 2016-09-14 15:02:32 +0000 |
|---|---|---|
| committer | Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> | 2016-09-14 15:02:32 +0000 |
| commit | 6ba29e21307eb883a5f625d1ea5346e3c2ba1dd4 (patch) | |
| tree | 078c3b754705ddf5b88fb1beb0c39bbecc493d60 | |
| parent | b25e87fca57221b649cbee3ee67669f43d1e1ebb (diff) | |
| download | bcm5719-llvm-6ba29e21307eb883a5f625d1ea5346e3c2ba1dd4.tar.gz bcm5719-llvm-6ba29e21307eb883a5f625d1ea5346e3c2ba1dd4.zip | |
[interception] Avoid duplicate declaration of isdigit in test
Differential Revision: https://reviews.llvm.org/D24504
llvm-svn: 281486
| -rw-r--r-- | compiler-rt/lib/interception/tests/interception_linux_test.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/tests/interception_linux_test.cc b/compiler-rt/lib/interception/tests/interception_linux_test.cc index 08619d8a341..cc09aa09df3 100644 --- a/compiler-rt/lib/interception/tests/interception_linux_test.cc +++ b/compiler-rt/lib/interception/tests/interception_linux_test.cc @@ -11,6 +11,10 @@ // Tests for interception_linux.h. // //===----------------------------------------------------------------------===// + +// Do not declare isdigit in ctype.h. +#define __NO_CTYPE + #include "interception/interception.h" #include "gtest/gtest.h" |

