]> Savannah Git Hosting - gnulib.git/commitdiff
Fix typo in previous change, by including <unistd.h>.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Jan 2013 01:40:36 +0000 (17:40 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Jan 2013 01:40:54 +0000 (17:40 -0800)
22 files changed:
tests/test-accept.c
tests/test-accept4.c
tests/test-bind.c
tests/test-connect.c
tests/test-dprintf.c
tests/test-fchmod.c
tests/test-fchmodat.c
tests/test-fdopen.c
tests/test-fstat.c
tests/test-getpeername.c
tests/test-getsockname.c
tests/test-grantpt.c
tests/test-ioctl.c
tests/test-listen.c
tests/test-recv.c
tests/test-recvfrom.c
tests/test-send.c
tests/test-sendto.c
tests/test-setsockopt.c
tests/test-shutdown.c
tests/test-unlockpt.c
tests/test-vdprintf.c

index 2dec5b049605daf6440b24217752ffb17d8d158a..2af98afacfb31f92e70a20fe355c27646f9fecb0 100644 (file)
@@ -23,6 +23,7 @@ SIGNATURE_CHECK (accept, int, (int, struct sockaddr *, socklen_t *));
 
 #include <errno.h>
 #include <netinet/in.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 05a56ce5d790440efef4a427b6acc86b559fc2cc..99f901b33003255012eb1652aad2fd6e7f480474 100644 (file)
@@ -24,6 +24,7 @@ SIGNATURE_CHECK (accept4, int, (int, struct sockaddr *, socklen_t *, int));
 #include <errno.h>
 #include <fcntl.h>
 #include <netinet/in.h>
+#include <unistd.h>
 
 #include "binary-io.h"
 #include "sockets.h"
index 1e8fa29cb1c2be1814f3dd7dcc97c654db6ba066..fe8541041e386fee6a03933276812905bf9accbf 100644 (file)
@@ -24,6 +24,7 @@ SIGNATURE_CHECK (bind, int, (int, const struct sockaddr *, socklen_t));
 #include <errno.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 4527730cd5abbea9990159df1a8486e35c313aa2..a1cd5f17baf82b80e6cea45eb96dccd4ea2e1304 100644 (file)
@@ -24,6 +24,7 @@ SIGNATURE_CHECK (connect, int, (int, const struct sockaddr *, socklen_t));
 #include <errno.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 89811077e37aeb79079408b4331037a840198a25..b70e91cbbcccc1c6ff073c8fb2f7988c9906c04e 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (dprintf, int, (int, const char *, ...));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index bf576b60baec5bece1bd6a0d699628aee7d20e8f..6a334402bd0ad0b4d1ef98c006ba9ee26d00e94e 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (fchmod, int, (int, mode_t));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index ed35c1b055b11735b867fec5ea75c22cf40f5208..082f2b48f0dfbe4b4e3d6ccc8ec72613da9a04ad 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (fchmodat, int, (int, const char *, mode_t, int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index 5603616c3b1c5ac6806a46ccbfc591493c33ae89..671c5e3d1f815a530cb7179dcb43e6c6d502df6b 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (fdopen, FILE *, (int, const char *));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index 0f6322935eda147b45ddc39fe801c4cb83ebe164..8ce15277af969fd4dd1eee68e69bddbfd950ae6f 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (fstat, int, (int, struct stat *));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index bd82e965874dbdbbb5d43f3abdb81a799fafcce9..fa858fa76564dfda8af19670234d193d8cd0d14c 100644 (file)
@@ -23,6 +23,7 @@ SIGNATURE_CHECK (getpeername, int, (int, struct sockaddr *, socklen_t *));
 
 #include <errno.h>
 #include <netinet/in.h>
+#include <unistd.h.>
 
 #include "sockets.h"
 #include "macros.h"
index 617b0a700cb5d2b84c9b7e183159f322ff3b0f4e..945e2edd5c3800e97001bcf5024127c936e6b270 100644 (file)
@@ -23,6 +23,7 @@ SIGNATURE_CHECK (getsockname, int, (int, struct sockaddr *, socklen_t *));
 
 #include <errno.h>
 #include <netinet/in.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 4665b32582286de93eff2d876b996cd03c26942b..09f04e3ee6f907a301707dd9235486655a31a19f 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (grantpt, int, (int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index 20ecb99032ad3a05501544d8a326f2092cb5b480..489bccc3ea7c54ded44745a8fc6dfabb87b8f154 100644 (file)
@@ -23,6 +23,7 @@
 SIGNATURE_CHECK (ioctl, int, (int, int, ...));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index 3f28b65f6e21e4fef3c37fb0afa0ec020894d9c8..206923faca4f3127170b2306ee69c440a76e50e5 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (listen, int, (int, int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 1605db569ca7d891be099e3612c8e2aac27285b0..353293aaff535bacfa70a38995dcb38e797de57d 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (recv, ssize_t, (int, void *, size_t, int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index dc83329fb39797574d78e0247ff56f2128f20096..6f59a34abf8ef30e310925a7517a78e386409f31 100644 (file)
@@ -25,6 +25,7 @@ SIGNATURE_CHECK (recvfrom, ssize_t,
 
 #include <errno.h>
 #include <netinet/in.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index d7af0fe0b8165c93519f7df7e9ac7b6505d2ac9e..2b41e21b99c67744feab93f8469f3c15d82497fb 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (send, ssize_t, (int, const void *, size_t, int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index a99a22149b3e32f6693025d70c538e456978a0f7..536acab2cbadd146179b7b0feb0c08f99b838cc7 100644 (file)
@@ -26,6 +26,7 @@ SIGNATURE_CHECK (sendto, ssize_t,
 #include <errno.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 824d46c896e58f9257a6f3bb69c51a48e39d576f..323b8e781166b199367ee388142709b198241579 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (setsockopt, int, (int, int, int, const void *, socklen_t));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index ae20706b21af566bb1c6552afb3162deabf3dd48..781577d84dcf5da927807eeb83b637592edcadb6 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (shutdown, int, (int, int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "sockets.h"
 #include "macros.h"
index 55fd9805a2be5e52b0326f2cefd9d9f9cff46b92..ee3bb8295a5a02c8656eb17c37b76a7d4ce8f858 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (unlockpt, int, (int));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"
 
index 024cc742bf3358a22784f05f4ff1bbd6c4c58082..7f669a75f7588653bbdcef5e1a4b3307931e7c8b 100644 (file)
@@ -22,6 +22,7 @@
 SIGNATURE_CHECK (vdprintf, int, (int, const char *, va_list));
 
 #include <errno.h>
+#include <unistd.h>
 
 #include "macros.h"