diff options
Diffstat (limited to 'newlib/libc/syscalls/sysfcntl.c')
-rw-r--r-- | newlib/libc/syscalls/sysfcntl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/syscalls/sysfcntl.c b/newlib/libc/syscalls/sysfcntl.c index d72403f6a..5e6de7e77 100644 --- a/newlib/libc/syscalls/sysfcntl.c +++ b/newlib/libc/syscalls/sysfcntl.c @@ -5,10 +5,10 @@ #include <errno.h> int -fcntl (fd, flag, arg) - int fd; - int flag; - int arg; +_DEFUN (fcntl, (fd, flag, arg), + int fd _AND + int flag _AND + int arg) { #ifdef HAVE_FCNTL # ifdef REENTRANT_SYSCALLS_PROVIDED |