diff options
Diffstat (limited to 'newlib/libc/unix/pread.c')
-rw-r--r-- | newlib/libc/unix/pread.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/unix/pread.c b/newlib/libc/unix/pread.c index 54efe29..61daac3 100644 --- a/newlib/libc/unix/pread.c +++ b/newlib/libc/unix/pread.c @@ -38,8 +38,7 @@ Supporting OS subroutine required: <<read>>, <<lseek>>. #include <reent.h> ssize_t -_DEFUN (_pread_r, (rptr, fd, buf, n, off), - struct _reent *rptr, +_pread_r (struct _reent *rptr, int fd, void *buf, size_t n, @@ -65,8 +64,7 @@ _DEFUN (_pread_r, (rptr, fd, buf, n, off), #ifndef _REENT_ONLY ssize_t -_DEFUN (pread, (fd, buf, n, off), - int fd, +pread (int fd, void *buf, size_t n, off_t off) |