Vitaly Buka | d01720d | 2016-06-16 00:14:42 +0000 | [diff] [blame] | 1 | #include <stdint.h> |
2 | #include <stdlib.h> | ||||
3 | |||||
4 | extern "C" void __afl_manual_init() {} | ||||
5 | |||||
6 | extern "C" int __afl_persistent_loop(unsigned int) { | ||||
7 | return 0; | ||||
8 | } | ||||
9 | |||||
10 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { | ||||
11 | return 0; | ||||
12 | } |