diff options
author | 2000-12-06 17:18:41 +0000 | |
---|---|---|
committer | 2000-12-06 17:18:41 +0000 | |
commit | fee2a480b3fff0a8593ec2e1ba501160c9a164c7 (patch) | |
tree | 1927d5703dac60dd7ec03c0a523ea52424a91369 /lib/libpthread/uthread/pthread_private.h | |
parent | BUG FIX: change enable sequence for 16-bit pcmcia cards. This change (diff) | |
download | wireguard-openbsd-fee2a480b3fff0a8593ec2e1ba501160c9a164c7.tar.xz wireguard-openbsd-fee2a480b3fff0a8593ec2e1ba501160c9a164c7.zip |
use __x__ formats for __attribute__ arguments; guenther@gac.edu
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 9cfcffd5ca2..79417040938 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_private.h,v 1.20 2000/10/04 05:55:35 d Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.21 2000/12/06 17:18:47 deraadt Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -823,7 +823,7 @@ void _waitq_remove(pthread_t pthread); void _waitq_setactive(void); void _waitq_clearactive(void); #endif -__dead void _thread_exit(const char *, int, const char *) __attribute__((noreturn)); +__dead void _thread_exit(const char *, int, const char *) __attribute__((__noreturn__)); void *_thread_cleanup(pthread_t); void _thread_cleanupspecific(void); void _thread_dump_info(void); @@ -986,7 +986,7 @@ pid_t _thread_sys_fork(void); pid_t _thread_sys_tcgetpgrp(int); ssize_t _thread_sys_read(int, void *, size_t); ssize_t _thread_sys_write(int, const void *, size_t); -__dead void _thread_sys__exit(int) __attribute__((noreturn)); +__dead void _thread_sys__exit(int) __attribute__((__noreturn__)); #endif /* #include <fcntl.h> */ |