mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 21:09:22 +08:00
10 lines
192 B
C
10 lines
192 B
C
#include <machine/syscall.h>
|
|
#include "internal_syscall.h"
|
|
|
|
/* Remove a file's directory entry. */
|
|
int
|
|
_unlink(const char *name)
|
|
{
|
|
return syscall_errno (SYS_unlink, name, 0, 0, 0, 0, 0);
|
|
}
|