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