diff options
Diffstat (limited to 'lib/libthr/thread/thr_join.c')
-rw-r--r-- | lib/libthr/thread/thr_join.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libthr/thread/thr_join.c b/lib/libthr/thread/thr_join.c index 2f22cbe..de27074 100644 --- a/lib/libthr/thread/thr_join.c +++ b/lib/libthr/thread/thr_join.c @@ -27,11 +27,15 @@ * */ +#include "namespace.h" #include <errno.h> #include <pthread.h> +#include "un-namespace.h" #include "thr_private.h" +int _pthread_timedjoin_np(pthread_t pthread, void **thread_return, + const struct timespec *abstime); static int join_common(pthread_t, void **, const struct timespec *); __weak_reference(_pthread_join, pthread_join); |