Home
       tests/libc: Return 0 in main for 0007-signal - 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 158e115b8b90463541073616f288f5b8b23a7490
   DIR parent a4e5aceb7b07d0a5e0b2d80e674a84515ed56318
  HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Wed, 16 Oct 2024 11:21:24 +0200
       
       tests/libc: Return 0 in main for 0007-signal
       
       Diffstat:
         M tests/libc/execute/0007-signal.c    |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/tests/libc/execute/0007-signal.c b/tests/libc/execute/0007-signal.c
       @@ -164,5 +164,5 @@ main()
                test3();
                test4();
        
       -        return;
       +        return 0;
        }