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