source: trunk/libs/newlib/src/newlib/libc/syscalls/sysunlink.c

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

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

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