diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-06-03 19:48:08 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-06-03 19:48:08 +0000 |
commit | bf3bcac28b4ef4891293e36c11b9bd5fd526612a (patch) | |
tree | 35ee7b52e9faceccbf19bc6e63c6f08ea897f7fe /newlib/libc/syscalls/sysfcntl.c | |
parent | 702ceb233d9b363278387bdcbac69c86a0b83660 (diff) | |
download | cygnal-bf3bcac28b4ef4891293e36c11b9bd5fd526612a.tar.gz cygnal-bf3bcac28b4ef4891293e36c11b9bd5fd526612a.tar.bz2 cygnal-bf3bcac28b4ef4891293e36c11b9bd5fd526612a.zip |
2003-06-03 Jeff Johnston <jjohnstn@redhat.com>
* libc/reent/execr.c: Use _DEFUN macro for function declaration.
* libc/reent/fcntlr.c: Ditto.
* libc/reent/fstat64r.c: Ditto.
* libc/reent/linkr.c: Ditto.
* libc/reent/lseek64r.c: Ditto.
* libc/reent/lseekr.c: Ditto.
* libc/reent/openr.c: Ditto.
* libc/reent/readr.c: Ditto.
* libc/reent/reent.c: Ditto.
* libc/reent/sbrkr.c: Ditto.
* libc/reent/signalr.c: Ditto.
* libc/reent/signgam.c: Ditto.
* libc/reent/statr.c: Ditto.
* libc/reent/timer.c: Ditto.
* libc/reent/unlinkr.c: Ditto.
* libc/reent/writer.c: Ditto.
* libc/syscalls/sysclose.c: Ditto.
* libc/syscalls/sysexecve.c: Ditto.
* libc/syscalls/sysfcntl.c: Ditto.
* libc/syscalls/sysfork.c: Ditto.
* libc/syscalls/sysfstat.c: Ditto.
* libc/syscalls/sysgetpid.c: Ditto.
* libc/syscalls/sysgettod.c: Ditto.
* libc/syscalls/syskill.c: Ditto.
* libc/syscalls/syslink.c: Ditto.
* libc/syscalls/syslseek.c: Ditto.
* libc/syscalls/sysopen.c: Ditto.
* libc/syscalls/sysread.c: Ditto.
* libc/syscalls/syssbrk.c: Ditto.
* libc/syscalls/sysstat.c: Ditto.
* libc/syscalls/systimes.c: Ditto.
* libc/syscalls/sysunlink.c: Ditto.
* libc/syscalls/syswait.c: Ditto.
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 |