diff options
author | 1999-03-10 10:06:22 +0000 | |
---|---|---|
committer | 1999-03-10 10:06:22 +0000 | |
commit | 89e19cbb45c28a8e14b8229f80e3b23346eac994 (patch) | |
tree | cba2e0aa4bfa9e5a52d3639f25bd94b56736d64c /lib/libc_r | |
parent | nicer debugging; _GNUC_ -> __GNUC__ (diff) | |
download | wireguard-openbsd-89e19cbb45c28a8e14b8229f80e3b23346eac994.tar.xz wireguard-openbsd-89e19cbb45c28a8e14b8229f80e3b23346eac994.zip |
extra includes for Wall
Diffstat (limited to 'lib/libc_r')
-rw-r--r-- | lib/libc_r/uthread/uthread_create.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_create.c b/lib/libc_r/uthread/uthread_create.c index eef5dab9646..d4542c6624b 100644 --- a/lib/libc_r/uthread/uthread_create.c +++ b/lib/libc_r/uthread/uthread_create.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: uthread_create.c,v 1.7 1999/02/01 08:23:46 d Exp $ + * $OpenBSD: uthread_create.c,v 1.8 1999/03/10 10:06:22 d Exp $ */ #include <errno.h> #include <stdlib.h> @@ -39,6 +39,8 @@ #include <sys/time.h> #ifdef _THREAD_SAFE #include <machine/reg.h> +#include <pthread.h> +#include "pthread_private.h" #include "thread_private.h" int |