URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libc/] [syscalls/] [syslink.c] - Rev 1765
Compare with Previous | Blame | View Log
/* connector for link */ #include <reent.h> int link (old, new) char *old; char *new; { #ifdef REENTRANT_SYSCALLS_PROVIDED return _link_r (_REENT, old, new); #else return _link (old, new); #endif }