summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/include/pthread.h
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2000-12-06 17:18:41 +0000
committerderaadt <deraadt@openbsd.org>2000-12-06 17:18:41 +0000
commitfee2a480b3fff0a8593ec2e1ba501160c9a164c7 (patch)
tree1927d5703dac60dd7ec03c0a523ea52424a91369 /lib/libpthread/include/pthread.h
parentBUG FIX: change enable sequence for 16-bit pcmcia cards. This change (diff)
downloadwireguard-openbsd-fee2a480b3fff0a8593ec2e1ba501160c9a164c7.tar.xz
wireguard-openbsd-fee2a480b3fff0a8593ec2e1ba501160c9a164c7.zip
use __x__ formats for __attribute__ arguments; guenther@gac.edu
Diffstat (limited to 'lib/libpthread/include/pthread.h')
-rw-r--r--lib/libpthread/include/pthread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/include/pthread.h b/lib/libpthread/include/pthread.h
index bb49293c20b..c13bbc54d69 100644
--- a/lib/libpthread/include/pthread.h
+++ b/lib/libpthread/include/pthread.h
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $OpenBSD: pthread.h,v 1.11 2000/01/06 07:06:00 d Exp $
+ * $OpenBSD: pthread.h,v 1.12 2000/12/06 17:18:47 deraadt Exp $
*
* $FreeBSD: pthread.h,v 1.13 1999/07/31 08:36:07 rse Exp $
*/
@@ -237,7 +237,7 @@ int pthread_create __P((pthread_t *, const pthread_attr_t *,
void *(*start_routine) (void *), void *));
int pthread_detach __P((pthread_t));
int pthread_equal __P((pthread_t, pthread_t));
-__dead void pthread_exit __P((void *)) __attribute__((noreturn));
+__dead void pthread_exit __P((void *)) __attribute__((__noreturn__));
void *pthread_getspecific __P((pthread_key_t));
int pthread_join __P((pthread_t, void **));
int pthread_key_create __P((pthread_key_t *,