aboutsummaryrefslogtreecommitdiff
#include <stdint.h>
#include <threads.h>
#include <pthread.h>

int thrd_join(thrd_t t, int *res)
{
        void *pthread_res;
        __pthread_join(t, &pthread_res);
        if (res) *res = (int)(intptr_t)pthread_res;
        return thrd_success;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif