about summary refs log tree commit diff
path: root/stdlib/isomac.c
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2019-01-08 21:10:28 +0100
committerAurelien Jarno <aurelien@aurel32.net>2019-02-03 15:17:18 +0100
commit11f382ee780649549428cb25af3a9f1d3465868d (patch)
tree729c87abf79b921538b0bcff221794958017a68d /stdlib/isomac.c
parent77c7d55ece0caaa39652e05158e18d8a9b4f6fbe (diff)
downloadglibc-11f382ee780649549428cb25af3a9f1d3465868d.tar.gz
glibc-11f382ee780649549428cb25af3a9f1d3465868d.tar.xz
glibc-11f382ee780649549428cb25af3a9f1d3465868d.zip
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>.
Diffstat (limited to 'stdlib/isomac.c')
-rw-r--r--stdlib/isomac.c1
1 files changed, 1 insertions, 0 deletions
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 <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <unistd.h>
 
 #define HEADER_MAX          256