diff options
author | 2000-12-06 17:18:41 +0000 | |
---|---|---|
committer | 2000-12-06 17:18:41 +0000 | |
commit | fee2a480b3fff0a8593ec2e1ba501160c9a164c7 (patch) | |
tree | 1927d5703dac60dd7ec03c0a523ea52424a91369 /lib/libc_r/TEST | |
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/libc_r/TEST')
-rw-r--r-- | lib/libc_r/TEST/test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/TEST/test.h b/lib/libc_r/TEST/test.h index 24afe9d4b1a..9713b8218f3 100644 --- a/lib/libc_r/TEST/test.h +++ b/lib/libc_r/TEST/test.h @@ -9,12 +9,12 @@ #include <stdarg.h> int _thread_sys_write __P((int, const char*, size_t)); -__dead void _thread_sys__exit __P((int)) __attribute__((noreturn)); +__dead void _thread_sys__exit __P((int)) __attribute__((__noreturn__)); static __dead void __vpanic __P((const char *, const char *, const char *, - int, const char *, va_list)) __attribute__((noreturn)); + int, const char *, va_list)) __attribute__((__noreturn__)); static __dead void __panic __P((const char *, const char *, const char *, - int, const char *, ...)) __attribute__((noreturn)); + int, const char *, ...)) __attribute__((__noreturn__)); #if defined(__OpenBSD__) || defined(__FreeBSD__) #include <pthread.h> |