scc

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

commit 82ea1289e2b1c663ec893ccf26ee48da023374d6
parent 11aa13ade5645840f9d2d0fe42b778afa457eb9b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 12 Mar 2024 19:10:17 +0100

libc: Fix name of __sigaction object

The syscall is named __sigaction because the file
src/libc/arch/linux/_sigaction.c has the wrapper over the syscall
to provide the expected generic interface.

Diffstat:
Msrc/libc/arch/arm64/linux/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libc/arch/arm64/linux/Makefile b/src/libc/arch/arm64/linux/Makefile @@ -14,7 +14,7 @@ GENOBJS =\ _lseek.$O\ _openat.$O\ _read.$O\ - _sigaction.$O\ + __sigaction.$O\ _sys_brk.$O\ _write.$O\ _wait4.$O\