Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
thread
/
thrd_exit.c
blob: b66bd99695ca63da6a7f2cc9dbc3f42e88d2e255 [
file
]
#include
"pthread_impl.h"
#include
<threads.h>
_Noreturn
void
__pthread_exit
(
void
*);
_Noreturn
void
thrd_exit
(
int
result
)
{
__pthread_exit
((
void
*)(
intptr_t
)
result
);
}