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: 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);
}