Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/unix/pread.c')
-rw-r--r--newlib/libc/unix/pread.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/unix/pread.c b/newlib/libc/unix/pread.c
index 54efe29fe..61daac3b4 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)