scc

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

commit 66ddb782948cd22d750ae6fe13df641fb1654e34
parent 43ee14f992b220a888e32a73ef7062c9a2c0892b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 14 Sep 2021 17:29:05 +0200

libc: Syncronize syscall.h

Several functions with prototypes in syscall.h
were moved to specific system directories but
the old and not standard definitions were still
in syscall.h generating additonal and not compatible
declarations.

Diffstat:
Msrc/libc/syscall.h | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/libc/syscall.h b/src/libc/syscall.h @@ -1,8 +1,6 @@ extern int _brk(void *); extern void _exit(int); extern int _close(int); -extern int _getpid(void); -extern int _kill(int, int); extern int _open(const char *, int, int); extern int _read(int, void *, size_t); extern int _unlink(const char *);