diff options
author | des <des@FreeBSD.org> | 2008-02-06 23:25:29 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2008-02-06 23:25:29 +0000 |
commit | 67c8e0948c3ec70e3bdfebe1cf5c79cf617f726b (patch) | |
tree | 2f4f2e014c1ed4364acc5e874ba2c2e8d0fe9c1a /lib | |
parent | 081081cbe33f4b03aef29fb6bf0d92202e81c49d (diff) | |
download | FreeBSD-src-67c8e0948c3ec70e3bdfebe1cf5c79cf617f726b.zip FreeBSD-src-67c8e0948c3ec70e3bdfebe1cf5c79cf617f726b.tar.gz |
Add missing #include
Spotted by: tinderbox
Submitted by: Pietro Cerutti <gahr@gahr.ch>
Pointy hat to: des
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libkse/thread/thr_mutex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libkse/thread/thr_mutex.c b/lib/libkse/thread/thr_mutex.c index a2a7ed5..228e650 100644 --- a/lib/libkse/thread/thr_mutex.c +++ b/lib/libkse/thread/thr_mutex.c @@ -36,6 +36,7 @@ #include <sys/param.h> #include <sys/queue.h> #include <pthread.h> +#include <pthread_np.h> #include "un-namespace.h" #include "thr_private.h" |