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/syslink.c')
-rw-r--r--newlib/libc/syscalls/syslink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/syscalls/syslink.c b/newlib/libc/syscalls/syslink.c
index df235eeaa..6abe184ea 100644
--- a/newlib/libc/syscalls/syslink.c
+++ b/newlib/libc/syscalls/syslink.c
@@ -3,9 +3,9 @@
#include <reent.h>
int
-_DEFUN (link, (old, new),
- char *old _AND
- char *new)
+link (old, new)
+ char *old;
+ char *new;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _link_r (_REENT, old, new);