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