summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test/AFLDriverTest.cpp
blob: 9ae18cb6cb9a65457ba03670ac28d5c78387ce44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdint.h>
#include <stdlib.h>

extern "C" void __afl_manual_init() {}

extern "C" int __afl_persistent_loop(unsigned int) {
  return 0;
}

extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
  return 0;
}
OpenPOWER on IntegriCloud