Add stddef.h to fix missing size_t type build errors.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 23 Jun 2020 12:12:18 +0000 (13:12 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 23 Jun 2020 12:12:18 +0000 (13:12 +0100)
libc/fuzzing/string/strcmp_fuzz.cpp

index 6ba8440..01d5d53 100644 (file)
@@ -10,6 +10,7 @@
 ///
 //===----------------------------------------------------------------------===//
 #include "src/string/strcmp.h"
+#include <stddef.h>
 #include <stdint.h>
 
 extern "C" int LLVMFuzzerTestTwoInputs(const uint8_t *data1, size_t size1,