summaryrefslogtreecommitdiffstats
path: root/regress/misc/fuzz-harness/agent_fuzz.cc
blob: ad85b2f9a29750c1c5cc8c9b48081e5571619bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cc_fuzz_target test for ssh-agent.
extern "C" {

#include <stdint.h>
#include <sys/types.h>

extern void test_one(const uint8_t* s, size_t slen);

int LLVMFuzzerTestOneInput(const uint8_t* s, size_t slen)
{
	test_one(s, slen);
	return 0;
}

} // extern