From: Florian Weimer Date: Fri, 5 Jul 2019 15:20:27 +0000 (+0200) Subject: build-sys: Include in ./configure wchar_t test X-Git-Tag: v2.35-rc1~318 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1632856ef19efb50c57c939b82a9ff712b3c0b09;p=thirdparty%2Futil-linux.git build-sys: Include in ./configure wchar_t test Without #include , this configure check fails for strict C99/C11 compilers which do not support implicit function declarations (which are a C90 feature removed from C99). Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index a840e20ee8..997b6388cb 100644 --- a/configure.ac +++ b/configure.ac @@ -756,6 +756,7 @@ UL_REQUIRES_COMPILE([widechar], [[ #include #include #include + #include ]], [[ wchar_t wc; wint_t w;