Sign in
fuchsia
/
fuchsia
/
0ce75f1841a7e8f3aa7ae66214a6d7102abfbd74
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
thread
/
thrd_exit.c
blob: f54409f001e5ef995481d3dfa326eeeb632d904d [
file
]
#include
<threads.h>
#include
"threads_impl.h"
_Noreturn
void
thrd_exit
(
int
result
)
{
__pthread_exit
((
void
*)(
intptr_t
)
result
);
}