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

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

int
_DEFUN (link, (old, new),
     _CONST char *old _AND
     _CONST char *new)
{
  return _link_r (_REENT, old, new);
}