diff options
author | deischen <deischen@FreeBSD.org> | 2007-11-30 17:20:29 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2007-11-30 17:20:29 +0000 |
commit | f1ac56b04d023087e7771958a39880cb905293e9 (patch) | |
tree | d3459c2b707d5533cdf469b26aa07ba25bc884ef /lib/libkse/thread/thr_attr_setstack.c | |
parent | 7e7891776f848635b8c67e11ba0e40d815f2a092 (diff) | |
download | FreeBSD-src-f1ac56b04d023087e7771958a39880cb905293e9.zip FreeBSD-src-f1ac56b04d023087e7771958a39880cb905293e9.tar.gz |
WARNS=3'ify.
Diffstat (limited to 'lib/libkse/thread/thr_attr_setstack.c')
-rw-r--r-- | lib/libkse/thread/thr_attr_setstack.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libkse/thread/thr_attr_setstack.c b/lib/libkse/thread/thr_attr_setstack.c index bdccfd8..9be6ebd 100644 --- a/lib/libkse/thread/thr_attr_setstack.c +++ b/lib/libkse/thread/thr_attr_setstack.c @@ -31,8 +31,11 @@ * * $FreeBSD$ */ + +#include "namespace.h" #include <errno.h> #include <pthread.h> +#include "un-namespace.h" #include "thr_private.h" LT10_COMPAT_PRIVATE(_pthread_attr_setstack); |