mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
0bda30e1ff
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
13 lines
181 B
C
13 lines
181 B
C
/* connector for link */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
_DEFUN (link, (old, new),
|
|
const char *old,
|
|
const char *new)
|
|
{
|
|
return _link_r (_REENT, old, new);
|
|
}
|