view fuzzer-preauth_nomaths.c @ 1587:b579ec254988

try and improve the odds of useful fuzzer activity
author Matt Johnston <matt@ucc.asn.au>
date Sun, 04 Mar 2018 22:11:23 +0800
parents a90fdd2d2ed8
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_preauth(Data, Size, 1);
}