blob: e447419113b9b6f519c251aa3265beb84cd99c13 [file] [log] [blame]
Matt Morehouse3f6c1622017-10-17 17:43:34 +00001//===--- DummySpecialCaseListFuzzer.cpp -----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implementation of main so we can build and test without linking libFuzzer.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/FuzzMutate/FuzzerCLI.h"
15
16extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
17int main(int argc, char *argv[]) {
18 return llvm::runFuzzerOnInputs(argc, argv, LLVMFuzzerTestOneInput);
19}