From fad1ff55af967e7a5f4f6edb7904e3b58a13e87e Mon Sep 17 00:00:00 2001 From: jca <> Date: Tue, 28 May 2019 10:33:03 +0000 Subject: [PATCH] Include pthread.h to make this header standalone (needs pthread_t and others) Will get us rid of pointless patches in the ports tree. ok guenther@ --- src/include/pthread_np.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/pthread_np.h b/src/include/pthread_np.h index b56bc651..fb7e9626 100644 --- a/src/include/pthread_np.h +++ b/src/include/pthread_np.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_np.h,v 1.2 2019/02/04 17:18:08 tedu Exp $ */ +/* $OpenBSD: pthread_np.h,v 1.3 2019/05/28 10:33:03 jca Exp $ */ /* * Copyright (c) 1996-98 John Birrell . * All rights reserved. @@ -34,6 +34,8 @@ #ifndef _PTHREAD_NP_H_ #define _PTHREAD_NP_H_ +#include + /* * Non-POSIX type definitions: */