diff options
Diffstat (limited to 'Source/UnixUserland/link.c')
-rw-r--r-- | Source/UnixUserland/link.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/UnixUserland/link.c b/Source/UnixUserland/link.c deleted file mode 100644 index 17c08dd..0000000 --- a/Source/UnixUserland/link.c +++ /dev/null @@ -1,8 +0,0 @@ -#include <errno.h> -#undef errno -extern int errno; - -int link(char *old, char *new) { - errno = EMLINK; - return -1; -} |