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