aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/unix/pread.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/unix/pread.c')
-rw-r--r--newlib/libc/unix/pread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/unix/pread.c b/newlib/libc/unix/pread.c
index 2360444..54efe29 100644
--- a/newlib/libc/unix/pread.c
+++ b/newlib/libc/unix/pread.c
@@ -41,7 +41,7 @@ ssize_t
_DEFUN (_pread_r, (rptr, fd, buf, n, off),
struct _reent *rptr,
int fd,
- _PTR buf,
+ void *buf,
size_t n,
off_t off)
{
@@ -67,7 +67,7 @@ _DEFUN (_pread_r, (rptr, fd, buf, n, off),
ssize_t
_DEFUN (pread, (fd, buf, n, off),
int fd,
- _PTR buf,
+ void *buf,
size_t n,
off_t off)
{