summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/pread.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/pread.c')
-rw-r--r--sysdeps/mach/hurd/pread.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sysdeps/mach/hurd/pread.c b/sysdeps/mach/hurd/pread.c
index 81db77beef..a14553be7e 100644
--- a/sysdeps/mach/hurd/pread.c
+++ b/sysdeps/mach/hurd/pread.c
@@ -1,6 +1,6 @@
/* Read block from given position in file without changing file pointer.
Hurd version.
- Copyright (C) 1999,2001 Free Software Foundation, Inc.
+ Copyright (C) 1999,2001,02 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -20,17 +20,11 @@
#include <errno.h>
#include <unistd.h>
-#include <hurd/fd.h>
ssize_t
__libc_pread (int fd, void *buf, size_t nbytes, off_t offset)
{
- error_t err;
- if (offset < 0)
- err = EINVAL;
- else
- err = HURD_FD_USE (fd, _hurd_fd_read (descriptor, buf, &nbytes, offset));
- return err ? __hurd_dfail (fd, err) : nbytes;
+ return __libc_pread64 (fd, buf, nbytes, (off64_t) offset);
}
#ifndef __libc_pread