diff options
Diffstat (limited to 'newlib/libc/reent/lseekr.c')
-rw-r--r-- | newlib/libc/reent/lseekr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/reent/lseekr.c b/newlib/libc/reent/lseekr.c index ed8ba13ed..45a340a3d 100644 --- a/newlib/libc/reent/lseekr.c +++ b/newlib/libc/reent/lseekr.c @@ -45,11 +45,11 @@ DESCRIPTION <<errno>>. */ -off_t +_off_t _lseek_r (ptr, fd, pos, whence) struct _reent *ptr; int fd; - off_t pos; + _off_t pos; int whence; { off_t ret; |