From: Darren Tucker Date: Mon, 17 Aug 2020 11:34:32 +0000 (+1000) Subject: Wrap stdint.h include in ifdef HAVE_STDINT_H. X-Git-Tag: V_8_4_P1~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05c215de8d224e094a872d97d45f37f60c06206b;p=thirdparty%2Fopenssh-portable.git Wrap stdint.h include in ifdef HAVE_STDINT_H. --- diff --git a/openbsd-compat/memmem.c b/openbsd-compat/memmem.c index eb64eaab8..ac1243eb0 100644 --- a/openbsd-compat/memmem.c +++ b/openbsd-compat/memmem.c @@ -28,7 +28,9 @@ #ifndef HAVE_MEMMEM #include +#ifdef HAVE_STDINT_H #include +#endif static char * twobyte_memmem(const unsigned char *h, size_t k, const unsigned char *n)