aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/syslink.c
blob: 2f7dec6f9e288029e4386fbdf3e351afc4f8173f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for link */

#include <reent.h>
#include <unistd.h>

int
link (const char *old,
     const char *new)
{
  return _link_r (_REENT, old, new);
}