From: Richard Levitte Date: Wed, 16 Nov 2022 15:20:57 +0000 (+0100) Subject: Use rather than X-Git-Tag: openssl-3.2.0-alpha1~1709 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7bc5ce4a79c61ab7238b188f9af48f41ff1392f9;p=thirdparty%2Fopenssl.git 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) --- diff --git a/fuzz/fuzzer.h b/fuzz/fuzzer.h index 4d8b7b9a517..76eda2ce5d3 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);