diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/StrcmpTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/StrcmpTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/test/StrcmpTest.cpp b/llvm/lib/Fuzzer/test/StrcmpTest.cpp index cd91dda76f3..e7636e8812f 100644 --- a/llvm/lib/Fuzzer/test/StrcmpTest.cpp +++ b/llvm/lib/Fuzzer/test/StrcmpTest.cpp @@ -2,11 +2,11 @@ // License. See LICENSE.TXT for details. // Break through a series of strcmp. -#include <cstring> +#include <cassert> #include <cstdint> #include <cstdio> #include <cstdlib> -#include <cassert> +#include <cstring> bool Eq(const uint8_t *Data, size_t Size, const char *Str) { char Buff[1024]; |