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