repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
syscalls
/
syslink.c
blob
2f7dec6f9e288029e4386fbdf3e351afc4f8173f
1
/* connector for link */
2
3
#include <reent.h>
4
#include <unistd.h>
5
6
int
7
link
(
const char
*
old
,
8
const char
*
new
)
9
{
10
return
_link_r
(
_REENT
,
old
,
new
);
11
}