summaryrefslogtreecommitdiffhomepage
path: root/tests/fuzz/test-fuzz.c
blob: 40649e2174adf9c70c8ae49d631558a5b480cb69 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <limits.h>

int LLVMFuzzerTestOneInput(const uint8_t *input, size_t size)
{
	return 0;
}