Retro68/gcc/newlib/libc/syscalls/syslink.c
2012-03-27 01:51:53 +02:00

13 lines
187 B
C

/* 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);
}