diff options
Diffstat (limited to 'newlib/libc/reent/lseek64r.c')
-rw-r--r-- | newlib/libc/reent/lseek64r.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/reent/lseek64r.c b/newlib/libc/reent/lseek64r.c index 886734be8..342cae2eb 100644 --- a/newlib/libc/reent/lseek64r.c +++ b/newlib/libc/reent/lseek64r.c @@ -48,17 +48,17 @@ DESCRIPTION with large file support. */ -off64_t +_off64_t _lseek64_r (ptr, fd, pos, whence) struct _reent *ptr; int fd; - off64_t pos; + _off64_t pos; int whence; { - off64_t ret; + _off64_t ret; errno = 0; - if ((ret = _lseek64 (fd, pos, whence)) == (off64_t) -1 && errno != 0) + if ((ret = _lseek64 (fd, pos, whence)) == (_off64_t) -1 && errno != 0) ptr->_errno = errno; return ret; } |