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

#include <reent.h>

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