summaryrefslogtreecommitdiff
path: root/src/threads/thrd_join.c
blob: f85d7a71a5525cc52d45f8d1f90369315c4c656b (plain)
1
2
3
4
5
6
7
#include <threads.h>
#include <pthread.h>

int thrd_join(thrd_t thr, int *res)
{
	return pthread_join(thr, (void**)&res);
}