9 lines
195 B
C
9 lines
195 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, 1, name, 0, 0, 0, 0, 0);
|
|
}
|