diff options
Diffstat (limited to 'newlib/libc/reent/lseek64r.c')
-rw-r--r-- | newlib/libc/reent/lseek64r.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/reent/lseek64r.c b/newlib/libc/reent/lseek64r.c index 342cae2..0207a12 100644 --- a/newlib/libc/reent/lseek64r.c +++ b/newlib/libc/reent/lseek64r.c @@ -49,11 +49,11 @@ DESCRIPTION */ _off64_t -_lseek64_r (ptr, fd, pos, whence) - struct _reent *ptr; - int fd; - _off64_t pos; - int whence; +_DEFUN (_lseek64_r, (ptr, fd, pos, whence), + struct _reent *ptr _AND + int fd _AND + _off64_t pos _AND + int whence) { _off64_t ret; |