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: df235eeaafd193e6fd367cb1c91848aaa9a0d232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* connector for link */

#include <reent.h>

int
_DEFUN (link, (old, new),
     char *old _AND
     char *new)
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
  return _link_r (_REENT, old, new);
#else
  return _link (old, new);
#endif
}