diff options
Diffstat (limited to 'newlib/libc/reent/fcntlr.c')
-rw-r--r-- | newlib/libc/reent/fcntlr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/reent/fcntlr.c b/newlib/libc/reent/fcntlr.c index e64dfe28a..d632d183f 100644 --- a/newlib/libc/reent/fcntlr.c +++ b/newlib/libc/reent/fcntlr.c @@ -48,11 +48,11 @@ DESCRIPTION */ int -_fcntl_r (ptr, fd, cmd, arg) - struct _reent *ptr; - int fd; - int cmd; - int arg; +_DEFUN (_fcntl_r, (ptr, fd, cmd, arg), + struct _reent *ptr _AND + int fd _AND + int cmd _AND + int arg) { int ret; |