diff options
Diffstat (limited to 'newlib/libc/reent/lseekr.c')
-rw-r--r-- | newlib/libc/reent/lseekr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/reent/lseekr.c b/newlib/libc/reent/lseekr.c index 817d52a26..fa00695a8 100644 --- a/newlib/libc/reent/lseekr.c +++ b/newlib/libc/reent/lseekr.c @@ -46,11 +46,11 @@ DESCRIPTION */ _off_t -_lseek_r (ptr, fd, pos, whence) - struct _reent *ptr; - int fd; - _off_t pos; - int whence; +_DEFUN (_lseek_r, (ptr, fd, pos, whence), + struct _reent *ptr _AND + int fd _AND + _off_t pos _AND + int whence) { _off_t ret; |