diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-03 03:03:40 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-03 03:03:40 +0200 |
commit | 2263ca7ce8a824f53debcc724bd21cd7099e1161 (patch) | |
tree | 6921b5e19ada87b8f7364b75662925db58f82bd1 /sysdeps | |
parent | ed95bf5638748068ef05ccbaa0a008b50ebecb42 (diff) | |
download | glibc-2263ca7ce8a824f53debcc724bd21cd7099e1161.tar.gz glibc-2263ca7ce8a824f53debcc724bd21cd7099e1161.tar.xz glibc-2263ca7ce8a824f53debcc724bd21cd7099e1161.zip |
hurd: Fix p{read,write}{,v64}v2.c build
* misc/preadv2.c: Include <errno.h>. * misc/preadv64v2.c: Include <errno.h>. * misc/pwritev2.c: Include <errno.h>. * misc/pwritev64v2.c: Include <errno.h>. * sysdeps/posix/preadv2.c: Include <errno.h>. * sysdeps/posix/preadv64v2.c: Include <errno.h>. Fix <unistd.h> inclusion. * sysdeps/posix/pwritev2.c: Include <errno.h>. * sysdeps/posix/pwritev64v2.c: Include <errno.h>.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/preadv2.c | 1 | ||||
-rw-r--r-- | sysdeps/posix/preadv64v2.c | 3 | ||||
-rw-r--r-- | sysdeps/posix/pwritev2.c | 1 | ||||
-rw-r--r-- | sysdeps/posix/pwritev64v2.c | 1 |
4 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/posix/preadv2.c b/sysdeps/posix/preadv2.c index b79b7b1bc3..cd96677ade 100644 --- a/sysdeps/posix/preadv2.c +++ b/sysdeps/posix/preadv2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <errno.h> #include <unistd.h> #include <sys/uio.h> diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c index 263f9b77c4..649bde4c5a 100644 --- a/sysdeps/posix/preadv64v2.c +++ b/sysdeps/posix/preadv64v2.c @@ -16,7 +16,8 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#include <unistd.> +#include <errno.h> +#include <unistd.h> #include <sys/uio.h> ssize_t diff --git a/sysdeps/posix/pwritev2.c b/sysdeps/posix/pwritev2.c index d746059d42..601f6b1b10 100644 --- a/sysdeps/posix/pwritev2.c +++ b/sysdeps/posix/pwritev2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <errno.h> #include <unistd.h> #include <sys/uio.h> diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c index f340c8a46d..9f05f97b40 100644 --- a/sysdeps/posix/pwritev64v2.c +++ b/sysdeps/posix/pwritev64v2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <errno.h> #include <unistd.h> #include <sys/uio.h> |