summaryrefslogtreecommitdiff
path: root/meson-cc-tests/fuzzer.c
blob: 0ae4a3101a14ebf307ace00d7fc2bd8937f0c676 (plain)
1
2
3
4
5
6
7
#include <stddef.h>
#include <stdint.h>

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