mirror of https://github.com/mpv-player/mpv
fuzzers/common: add prototype for LLVMFuzzerTestOneInput
To suppress warning.
This commit is contained in:
parent
16612672fd
commit
fc0d0f10eb
|
@ -18,10 +18,13 @@
|
|||
#pragma once
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
|
||||
|
||||
#define MPV_STRINGIFY_(X) #X
|
||||
#define MPV_STRINGIFY(X) MPV_STRINGIFY_(X)
|
||||
|
||||
|
|
Loading…
Reference in New Issue