diff options
author | David Xu <davidxu@FreeBSD.org> | 2006-04-04 02:57:49 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2006-04-04 02:57:49 +0000 |
commit | 37a6356bbed1e94fd2b0d9d02a29508465584c19 (patch) | |
tree | 3cbec5633c5b1de6974d08e11807ee0ce2110a82 /lib/libthr/thread/thr_setschedparam.c | |
parent | 9d9b92aaf4aa46f657f05da8cc5c201ff5257798 (diff) | |
download | src-37a6356bbed1e94fd2b0d9d02a29508465584c19.tar.gz src-37a6356bbed1e94fd2b0d9d02a29508465584c19.zip |
WARNS level 4 cleanup.
Notes
Notes:
svn path=/head/; revision=157457
Diffstat (limited to 'lib/libthr/thread/thr_setschedparam.c')
-rw-r--r-- | lib/libthr/thread/thr_setschedparam.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_setschedparam.c b/lib/libthr/thread/thr_setschedparam.c index 100684951f09..9cbebbf99972 100644 --- a/lib/libthr/thread/thr_setschedparam.c +++ b/lib/libthr/thread/thr_setschedparam.c @@ -32,9 +32,11 @@ * $FreeBSD$ */ -#include <errno.h> +#include "namespace.h" #include <sys/param.h> +#include <errno.h> #include <pthread.h> +#include "un-namespace.h" #include "thr_private.h" |