Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syslink.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}