mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
10 lines
148 B
C
10 lines
148 B
C
![]() |
#include <stdlib.h>
|
||
|
#define SYSCALL_NORETURN
|
||
|
#include "syscall.h"
|
||
|
|
||
|
void _Exit(int ec)
|
||
|
{
|
||
|
syscall1(__NR_exit_group, ec);
|
||
|
syscall1(__NR_exit, ec);
|
||
|
}
|