diff options
Diffstat (limited to 'lib/libthr/thread/thr_yield.c')
-rw-r--r-- | lib/libthr/thread/thr_yield.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_yield.c b/lib/libthr/thread/thr_yield.c index 2c96820..300504b 100644 --- a/lib/libthr/thread/thr_yield.c +++ b/lib/libthr/thread/thr_yield.c @@ -31,8 +31,11 @@ * * $FreeBSD$ */ + +#include "namespace.h" #include <pthread.h> -#include "thr_private.h" +#include <sched.h> +#include "un-namespace.h" __weak_reference(_pthread_yield, pthread_yield); |