scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 7ef7fdf9edcca8379b59b8896bfd9c98e02709be
parent 4e49446b128eea514d692e1b071ce84c926127e5
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:
Msrc/libc/arch/amd64/linux/.gitignore | 1+
Msrc/libc/syscall.h | 1+
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);