overhaul internally-public declarations using wrapper headers
[musl.git] / src / thread / thrd_join.c
blob0d5fd302d1810425a49f52fb3e8c7efe83f9e719
1 #include <stdint.h>
2 #include <threads.h>
3 #include <pthread.h>
5 int thrd_join(thrd_t t, int *res)
7 void *pthread_res;
8 __pthread_join(t, &pthread_res);
9 if (res) *res = (int)(intptr_t)pthread_res;
10 return thrd_success;