blob: f54409f001e5ef995481d3dfa326eeeb632d904d [file] [log] [blame]
#include <threads.h>
#include "threads_impl.h"
_Noreturn void thrd_exit(int result) {
__pthread_exit((void*)(intptr_t)result);
}