From 9feb36ba1ebe07be10c9429bc6ede269d9828ed2 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 22 Jan 2013 17:40:36 -0800 Subject: [PATCH] Fix typo in previous change, by including . --- tests/test-accept.c | 1 + tests/test-accept4.c | 1 + tests/test-bind.c | 1 + tests/test-connect.c | 1 + tests/test-dprintf.c | 1 + tests/test-fchmod.c | 1 + tests/test-fchmodat.c | 1 + tests/test-fdopen.c | 1 + tests/test-fstat.c | 1 + tests/test-getpeername.c | 1 + tests/test-getsockname.c | 1 + tests/test-grantpt.c | 1 + tests/test-ioctl.c | 1 + tests/test-listen.c | 1 + tests/test-recv.c | 1 + tests/test-recvfrom.c | 1 + tests/test-send.c | 1 + tests/test-sendto.c | 1 + tests/test-setsockopt.c | 1 + tests/test-shutdown.c | 1 + tests/test-unlockpt.c | 1 + tests/test-vdprintf.c | 1 + 22 files changed, 22 insertions(+) diff --git a/tests/test-accept.c b/tests/test-accept.c index 2dec5b049..2af98afac 100644 --- a/tests/test-accept.c +++ b/tests/test-accept.c @@ -23,6 +23,7 @@ SIGNATURE_CHECK (accept, int, (int, struct sockaddr *, socklen_t *)); #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-accept4.c b/tests/test-accept4.c index 05a56ce5d..99f901b33 100644 --- a/tests/test-accept4.c +++ b/tests/test-accept4.c @@ -24,6 +24,7 @@ SIGNATURE_CHECK (accept4, int, (int, struct sockaddr *, socklen_t *, int)); #include #include #include +#include #include "binary-io.h" #include "sockets.h" diff --git a/tests/test-bind.c b/tests/test-bind.c index 1e8fa29cb..fe8541041 100644 --- a/tests/test-bind.c +++ b/tests/test-bind.c @@ -24,6 +24,7 @@ SIGNATURE_CHECK (bind, int, (int, const struct sockaddr *, socklen_t)); #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-connect.c b/tests/test-connect.c index 4527730cd..a1cd5f17b 100644 --- a/tests/test-connect.c +++ b/tests/test-connect.c @@ -24,6 +24,7 @@ SIGNATURE_CHECK (connect, int, (int, const struct sockaddr *, socklen_t)); #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-dprintf.c b/tests/test-dprintf.c index 89811077e..b70e91cbb 100644 --- a/tests/test-dprintf.c +++ b/tests/test-dprintf.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (dprintf, int, (int, const char *, ...)); #include +#include #include "macros.h" diff --git a/tests/test-fchmod.c b/tests/test-fchmod.c index bf576b60b..6a334402b 100644 --- a/tests/test-fchmod.c +++ b/tests/test-fchmod.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (fchmod, int, (int, mode_t)); #include +#include #include "macros.h" diff --git a/tests/test-fchmodat.c b/tests/test-fchmodat.c index ed35c1b05..082f2b48f 100644 --- a/tests/test-fchmodat.c +++ b/tests/test-fchmodat.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (fchmodat, int, (int, const char *, mode_t, int)); #include +#include #include "macros.h" diff --git a/tests/test-fdopen.c b/tests/test-fdopen.c index 5603616c3..671c5e3d1 100644 --- a/tests/test-fdopen.c +++ b/tests/test-fdopen.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (fdopen, FILE *, (int, const char *)); #include +#include #include "macros.h" diff --git a/tests/test-fstat.c b/tests/test-fstat.c index 0f6322935..8ce15277a 100644 --- a/tests/test-fstat.c +++ b/tests/test-fstat.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (fstat, int, (int, struct stat *)); #include +#include #include "macros.h" diff --git a/tests/test-getpeername.c b/tests/test-getpeername.c index bd82e9658..fa858fa76 100644 --- a/tests/test-getpeername.c +++ b/tests/test-getpeername.c @@ -23,6 +23,7 @@ SIGNATURE_CHECK (getpeername, int, (int, struct sockaddr *, socklen_t *)); #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-getsockname.c b/tests/test-getsockname.c index 617b0a700..945e2edd5 100644 --- a/tests/test-getsockname.c +++ b/tests/test-getsockname.c @@ -23,6 +23,7 @@ SIGNATURE_CHECK (getsockname, int, (int, struct sockaddr *, socklen_t *)); #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-grantpt.c b/tests/test-grantpt.c index 4665b3258..09f04e3ee 100644 --- a/tests/test-grantpt.c +++ b/tests/test-grantpt.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (grantpt, int, (int)); #include +#include #include "macros.h" diff --git a/tests/test-ioctl.c b/tests/test-ioctl.c index 20ecb9903..489bccc3e 100644 --- a/tests/test-ioctl.c +++ b/tests/test-ioctl.c @@ -23,6 +23,7 @@ SIGNATURE_CHECK (ioctl, int, (int, int, ...)); #include +#include #include "macros.h" diff --git a/tests/test-listen.c b/tests/test-listen.c index 3f28b65f6..206923fac 100644 --- a/tests/test-listen.c +++ b/tests/test-listen.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (listen, int, (int, int)); #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-recv.c b/tests/test-recv.c index 1605db569..353293aaf 100644 --- a/tests/test-recv.c +++ b/tests/test-recv.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (recv, ssize_t, (int, void *, size_t, int)); #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-recvfrom.c b/tests/test-recvfrom.c index dc83329fb..6f59a34ab 100644 --- a/tests/test-recvfrom.c +++ b/tests/test-recvfrom.c @@ -25,6 +25,7 @@ SIGNATURE_CHECK (recvfrom, ssize_t, #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-send.c b/tests/test-send.c index d7af0fe0b..2b41e21b9 100644 --- a/tests/test-send.c +++ b/tests/test-send.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (send, ssize_t, (int, const void *, size_t, int)); #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-sendto.c b/tests/test-sendto.c index a99a22149..536acab2c 100644 --- a/tests/test-sendto.c +++ b/tests/test-sendto.c @@ -26,6 +26,7 @@ SIGNATURE_CHECK (sendto, ssize_t, #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-setsockopt.c b/tests/test-setsockopt.c index 824d46c89..323b8e781 100644 --- a/tests/test-setsockopt.c +++ b/tests/test-setsockopt.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (setsockopt, int, (int, int, int, const void *, socklen_t)); #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-shutdown.c b/tests/test-shutdown.c index ae20706b2..781577d84 100644 --- a/tests/test-shutdown.c +++ b/tests/test-shutdown.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (shutdown, int, (int, int)); #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-unlockpt.c b/tests/test-unlockpt.c index 55fd9805a..ee3bb8295 100644 --- a/tests/test-unlockpt.c +++ b/tests/test-unlockpt.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (unlockpt, int, (int)); #include +#include #include "macros.h" diff --git a/tests/test-vdprintf.c b/tests/test-vdprintf.c index 024cc742b..7f669a75f 100644 --- a/tests/test-vdprintf.c +++ b/tests/test-vdprintf.c @@ -22,6 +22,7 @@ SIGNATURE_CHECK (vdprintf, int, (int, const char *, va_list)); #include +#include #include "macros.h" -- 2.11.0