# HG changeset patch # User Paul Eggert # Date 1358905236 28800 # Node ID 87f819736ab1c12766d00d78aebe23f7b48e6dc3 # Parent 3a09cc104f4c9608125c8ecab32830eef06e17c4 Fix typo in previous change, by including . diff --git a/tests/test-accept.c b/tests/test-accept.c --- a/tests/test-accept.c +++ b/tests/test-accept.c @@ -23,6 +23,7 @@ #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-accept4.c b/tests/test-accept4.c --- a/tests/test-accept4.c +++ b/tests/test-accept4.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "binary-io.h" #include "sockets.h" diff --git a/tests/test-bind.c b/tests/test-bind.c --- a/tests/test-bind.c +++ b/tests/test-bind.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-connect.c b/tests/test-connect.c --- a/tests/test-connect.c +++ b/tests/test-connect.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-dprintf.c b/tests/test-dprintf.c --- 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 --- 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 --- 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 --- 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 --- 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 --- a/tests/test-getpeername.c +++ b/tests/test-getpeername.c @@ -23,6 +23,7 @@ #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-getsockname.c b/tests/test-getsockname.c --- a/tests/test-getsockname.c +++ b/tests/test-getsockname.c @@ -23,6 +23,7 @@ #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-grantpt.c b/tests/test-grantpt.c --- 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 --- 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 --- 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 --- 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 --- a/tests/test-recvfrom.c +++ b/tests/test-recvfrom.c @@ -25,6 +25,7 @@ #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-send.c b/tests/test-send.c --- 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 --- a/tests/test-sendto.c +++ b/tests/test-sendto.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "sockets.h" #include "macros.h" diff --git a/tests/test-setsockopt.c b/tests/test-setsockopt.c --- 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 --- 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 --- 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 --- 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"