From 7bc5ce4a79c61ab7238b188f9af48f41ff1392f9 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 16 Nov 2022 16:20:57 +0100 Subject: [PATCH] Use rather than is C99, which means that on older compiler, it can't be included. We have code in that compensates. Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19697) --- fuzz/fuzzer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/fuzzer.h b/fuzz/fuzzer.h index 4d8b7b9a51..76eda2ce5d 100644 --- a/fuzz/fuzzer.h +++ b/fuzz/fuzzer.h @@ -8,8 +8,8 @@ * or in the file LICENSE in the source distribution. */ -#include /* for uint8_t */ -#include /* for size_t */ +#include /* for size_t */ +#include /* for uint8_t */ int FuzzerTestOneInput(const uint8_t *buf, size_t len); int FuzzerInitialize(int *argc, char ***argv);