Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/syscalls/syslseek.c')
-rw-r--r--newlib/libc/syscalls/syslseek.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/syscalls/syslseek.c b/newlib/libc/syscalls/syslseek.c
index a1722471c..57d6423e9 100644
--- a/newlib/libc/syscalls/syslseek.c
+++ b/newlib/libc/syscalls/syslseek.c
@@ -4,10 +4,10 @@
#include <unistd.h>
off_t
-_DEFUN (lseek, (fd, pos, whence),
- int fd _AND
- off_t pos _AND
- int whence)
+lseek (fd, pos, whence)
+ int fd;
+ off_t pos;
+ int whence;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _lseek_r (_REENT, fd, pos, whence);