fuzzers/common: add prototype for LLVMFuzzerTestOneInput

To suppress warning.
This commit is contained in:
Kacper Michajłow 2024-06-04 22:10:36 +02:00
parent 16612672fd
commit fc0d0f10eb
1 changed files with 3 additions and 0 deletions

View File

@ -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)