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: 188040e4e727be1443e8fb89c91694fb76dc93ec (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,
     const char *new)
{
  return _link_r (_REENT, old, new);
}