scc

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

commit c0fcd879a7b62e533c2585a55768862ad845e960
parent 96412d000b9cb374033665f6ccfcd06f9c9e4d0e
Author: Quentin Rameau <quinq@fifth.space>
Date:   Sat,  4 Mar 2017 12:57:45 +0100

[libc] fix exit

Diffstat:
Mlibc/src/exit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/src/exit.c b/libc/src/exit.c @@ -12,5 +12,5 @@ exit(int status) for (bp = _atexitf; bp < &_atexitf[_ATEXIT_MAX] && *bp; ++bp) (*bp)(); - _Exit(); + _Exit(status); }