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