Sign in
◑
Theme
mojo
/
mojo-tools
/
db06898a53770ff272c75ba012a757597fc0e2c5
/
.
/
fusl
/
src
/
thread
/
thrd_exit.c
blob: e254a5f4ec3e0b327b03fc7c569e28a525ca0d5a [
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
);
}