From patchwork Tue Jan 8 20:10:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 30997 Received: (qmail 67926 invoked by alias); 8 Jan 2019 20:10:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 67914 invoked by uid 89); 8 Jan 2019 20:10:51 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=260, HContent-Transfer-Encoding:8bit X-HELO: hall.aurel32.net From: Aurelien Jarno To: libc-alpha@sourceware.org Cc: Aurelien Jarno Subject: [PATCH] testsuite: stdlib/isomac.c: add missing include Date: Tue, 8 Jan 2019 21:10:38 +0100 Message-Id: <20190108201038.20996-1-aurelien@aurel32.net> MIME-Version: 1.0 When running the testsuite, building stdlib/isomac.c outputs the following warning: gcc -O -D_GNU_SOURCE -DIS_IN_build -include /home/aurel32/glibc-build/config.h isomac.c -o /home/aurel32/glibc-build/stdlib/isomac isomac.c: In function ‘get_null_defines’: isomac.c:260:3: warning: implicit declaration of function ‘close’; did you mean ‘pclose’? [-Wimplicit-function-declaration] close (fd); ^~~~~ pclose Fix that by adding the include. Changelog: * stdlib/isomac.c: Include . Reviewed-by: Jonathan Nieder --- ChangeLog | 4 ++++ stdlib/isomac.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 909e56a49c..4fef3c1807 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-01-08 Aurelien Jarno + + * stdlib/isomac.c: Include . + 2019-01-07 H.J. Lu [BZ #24066] diff --git a/stdlib/isomac.c b/stdlib/isomac.c index 37f564c82a..7d743cb8e5 100644 --- a/stdlib/isomac.c +++ b/stdlib/isomac.c @@ -74,6 +74,7 @@ #include #include #include +#include #define HEADER_MAX 256