4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
18 lines
264 B
C
18 lines
264 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(unlink, _unlink)
|
|
#endif
|
|
|
|
int unlink(name)
|
|
const char *name;
|
|
{
|
|
message m;
|
|
|
|
_loadname(name, &m);
|
|
return(_syscall(VFS_PROC_NR, UNLINK, &m));
|
|
}
|