diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-06 20:29:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-06 20:29:29 +0000 |
commit | f78e59a8f90f72609c153d4db493c2d43e6ca379 (patch) | |
tree | 82fe59427bc672bc7d8f63a86a0515ae4be18fef /newlib/libc/unix | |
parent | a9917779940a314185fa33c177a45fd12502935c (diff) | |
download | cygnal-f78e59a8f90f72609c153d4db493c2d43e6ca379.tar.gz cygnal-f78e59a8f90f72609c153d4db493c2d43e6ca379.tar.bz2 cygnal-f78e59a8f90f72609c153d4db493c2d43e6ca379.zip |
2002-05-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/unix/pread.c: Fix typo for _pread_r.
* libc/unix/pwrite.c: Fix type for _pwrite_r.
* libc/sys/linux/pread64.c: Fix typo for read syscall.
* libc/sys/linux/pwrite64.c: Fix typo for write syscall.
Diffstat (limited to 'newlib/libc/unix')
-rw-r--r-- | newlib/libc/unix/pread.c | 2 | ||||
-rw-r--r-- | newlib/libc/unix/pwrite.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/unix/pread.c b/newlib/libc/unix/pread.c index 68ed68eb1..72087542e 100644 --- a/newlib/libc/unix/pread.c +++ b/newlib/libc/unix/pread.c @@ -52,7 +52,7 @@ Supporting OS subroutine required: <<read>>, <<lseek>>. #include <reent.h> ssize_t -_DEFUN (pread_r, (rptr, fd, buf, n, off), +_DEFUN (_pread_r, (rptr, fd, buf, n, off), struct _reent *rptr _AND int fd _AND _PTR buf _AND diff --git a/newlib/libc/unix/pwrite.c b/newlib/libc/unix/pwrite.c index 2d672bfbe..23979ac79 100644 --- a/newlib/libc/unix/pwrite.c +++ b/newlib/libc/unix/pwrite.c @@ -53,7 +53,7 @@ Supporting OS subroutine required: <<write>>, <<lseek>>. #include <reent.h> ssize_t -_DEFUN (pwrite_r, (rptr, fd, buf, n, off), +_DEFUN (_pwrite_r, (rptr, fd, buf, n, off), struct _reent *rptr _AND int fd _AND _CONST _PTR buf _AND |