hurd: Fix p{read,write}{,v64}v2.c build

* sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
	* sysdeps/posix/preadv64v2.c: Use off_t instead of OFF_T.
	* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
	* sysdeps/posix/pwritev64v2.c: Use off_t instead of OFF_T.
This commit is contained in:
Samuel Thibault 2017-09-03 02:45:06 +02:00
parent 01969395db
commit dd2b31dec0
5 changed files with 8 additions and 4 deletions

View File

@ -5,6 +5,10 @@
parameter.
* sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
just <bits/types.h>.
* sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
* sysdeps/posix/preadv64v2.c: Use off_t instead of OFF_T.
* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
* sysdeps/posix/pwritev64v2.c: Use off_t instead of OFF_T.
2017-09-01 Joseph Myers <joseph@codesourcery.com>

View File

@ -23,7 +23,7 @@
/* Since we define no flags for preadv2 just route to preadv. */
ssize_t
preadv2 (int fd, const struct iovec *vector, int count, OFF_T offset,
preadv2 (int fd, const struct iovec *vector, int count, off_t offset,
int flags)
{
if (flags != 0)

View File

@ -20,7 +20,7 @@
#include <sys/uio.h>
ssize_t
preadv64v2 (int fd, const struct iovec *vector, int count, OFF_T offset,
preadv64v2 (int fd, const struct iovec *vector, int count, off_t offset,
int flags)
{
if (flags != 0)

View File

@ -23,7 +23,7 @@
/* Since we define no flags for pwritev2 just route to pwritev. */
ssize_t
pwritev2 (int fd, const struct iovec *vector, int count, OFF_T offset,
pwritev2 (int fd, const struct iovec *vector, int count, off_t offset,
int flags)
{
if (flags != 0)

View File

@ -21,7 +21,7 @@
/* Since we define no flags for pwritev2 just route to pwritev. */
ssize_t
pwritev64v2 (int fd, const struct iovec *vector, int count, OFF_T offset,
pwritev64v2 (int fd, const struct iovec *vector, int count, off_t offset,
int flags)
{
if (flags != 0)