aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2019-01-08 21:10:28 +0100
committerSunil K Pandey <skpgkp2@gmail.com>2024-05-09 19:05:44 -0700
commitb6e9f210719308153a12d7a259d6ac4340677c9b (patch)
tree9f952dffd2cbceeb195a1f42eec2c56eaaab0e65
parent76d9e44c59d76978df0d19869d92f0e29aee74a5 (diff)
downloadglibc-b6e9f210719308153a12d7a259d6ac4340677c9b.zip
glibc-b6e9f210719308153a12d7a259d6ac4340677c9b.tar.gz
glibc-b6e9f210719308153a12d7a259d6ac4340677c9b.tar.bz2
testsuite: stdlib/isomac.c: add missing include
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 <unistd.h> include. Changelog: * stdlib/isomac.c: Include <unistd.h>. (cherry picked from commit 11f382ee780649549428cb25af3a9f1d3465868d)
-rw-r--r--ChangeLog4
-rw-r--r--stdlib/isomac.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1bd2a57..a7bacf7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-03 Aurelien Jarno <aurelien@aurel32.net>
+
+ * stdlib/isomac.c: Include <unistd.h>.
+
2019-06-06 Florian Weimer <fweimer@redhat.com>
* sysdeps/unix/sysv/linux/riscv/flush-icache.c: Do not use
diff --git a/stdlib/isomac.c b/stdlib/isomac.c
index 37f564c..7d743cb 100644
--- a/stdlib/isomac.c
+++ b/stdlib/isomac.c
@@ -74,6 +74,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
#define HEADER_MAX 256