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

int link(char *old, char *new) {
	errno = EMLINK;
	return -1;
}