diff options
Diffstat (limited to 'newlib/libc/syscalls/syslseek.c')
-rw-r--r-- | newlib/libc/syscalls/syslseek.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/syscalls/syslseek.c b/newlib/libc/syscalls/syslseek.c index 57d6423e9..a1722471c 100644 --- a/newlib/libc/syscalls/syslseek.c +++ b/newlib/libc/syscalls/syslseek.c @@ -4,10 +4,10 @@ #include <unistd.h> off_t -lseek (fd, pos, whence) - int fd; - off_t pos; - int whence; +_DEFUN (lseek, (fd, pos, whence), + int fd _AND + off_t pos _AND + int whence) { #ifdef REENTRANT_SYSCALLS_PROVIDED return _lseek_r (_REENT, fd, pos, whence); |