source: trunk/libs/newlib/src/newlib/libc/syscalls/syslink.c @ 559

Last change on this file since 559 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 156 bytes
Line 
1/* connector for link */
2
3#include <reent.h>
4#include <unistd.h>
5
6int
7link (const char *old,
8     const char *new)
9{
10  return _link_r (_REENT, old, new);
11}
Note: See TracBrowser for help on using the repository browser.