cairo/meson-cc-tests/fuzzer.c

8 lines
120 B
C
Raw Normal View History

2022-06-19 16:48:39 +09:30
#include <stddef.h>
#include <stdint.h>
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
return 0;
}