summaryrefslogtreecommitdiff
path: root/Source/UnixUserland/unlink.c
blob: 112ca541e5609857dda252495f2b13f26428c1cc (plain) (blame)
1
2
3
4
5
6
7
8
#include <errno.h>
#undef errno
extern int errno;

int unlink(char *name) {
	errno = ENOENT;
	return -1;
}