diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-09-01 15:21:23 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-09-01 15:21:23 +0000 |
commit | be47cc4f82745bb02051fd1b4cf464d698710177 (patch) | |
tree | 15ea00296ffbd4e5690b9d0de465472d8ba57561 /lib/libthr/thread/thr_create.c | |
parent | d33cea825e150007867f146fc2408e53794b2796 (diff) | |
download | FreeBSD-src-be47cc4f82745bb02051fd1b4cf464d698710177.zip FreeBSD-src-be47cc4f82745bb02051fd1b4cf464d698710177.tar.gz |
Include needed headers that were obtained through <pthread.h>. Sort headers
while here.
Diffstat (limited to 'lib/libthr/thread/thr_create.c')
-rw-r--r-- | lib/libthr/thread/thr_create.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_create.c b/lib/libthr/thread/thr_create.c index 774eaaa..22d35e7 100644 --- a/lib/libthr/thread/thr_create.c +++ b/lib/libthr/thread/thr_create.c @@ -33,12 +33,13 @@ * $FreeBSD$ */ +#include <sys/types.h> +#include <sys/signalvar.h> #include <errno.h> #include <stdlib.h> #include <string.h> #include <stddef.h> #include <pthread.h> -#include <sys/signalvar.h> #include "thr_private.h" |