From fc0d0f10eb466fdebc39a58562dd210d67c7fb80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Tue, 4 Jun 2024 22:10:36 +0200 Subject: [PATCH] fuzzers/common: add prototype for LLVMFuzzerTestOneInput To suppress warning. --- fuzzers/common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fuzzers/common.h b/fuzzers/common.h index 3b329029e9..2a9448496a 100644 --- a/fuzzers/common.h +++ b/fuzzers/common.h @@ -18,10 +18,13 @@ #pragma once #include +#include #include #include #include +int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); + #define MPV_STRINGIFY_(X) #X #define MPV_STRINGIFY(X) MPV_STRINGIFY_(X)