Home
       libc: Fix name of __sigaction object - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 82ea1289e2b1c663ec893ccf26ee48da023374d6
   DIR parent 11aa13ade5645840f9d2d0fe42b778afa457eb9b
  HTML 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:
         M src/libc/arch/arm64/linux/Makefile  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR 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\