Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / syslink.c
blob2f7dec6f9e288029e4386fbdf3e351afc4f8173f
1 /* connector for link */
3 #include <reent.h>
4 #include <unistd.h>
6 int
7 link (const char *old,
8 const char *new)
10 return _link_r (_REENT, old, new);