commit bdb679b87123bfd001006f45c317e1e6832b791a
parent 89e72c2d2d478536697490f2427a2d429ce72983
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Sat, 16 May 2020 19:59:38 +0200
libc: Amend commit 97caea2d
The prototype and the .gitignore was forgotten.
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/libc/arch/amd64/linux/.gitignore b/src/libc/arch/amd64/linux/.gitignore
@@ -9,3 +9,4 @@ _read.s
_sigaction.s
_sys_errlist.c
_write.s
+_unlink.s
diff --git a/src/libc/syscall.h b/src/libc/syscall.h
@@ -6,3 +6,4 @@ extern int _write(int fd, void *buf, size_t n);
extern int _lseek(int fd, long off, int whence);
extern void _Exit(int status);
extern int _access(char *path, int mode);
+extern int _unlink(const char *path);