summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-07-04 03:27:57 +0000
committerdholland <dholland@NetBSD.org>2009-07-04 03:27:57 +0000
commit6cd6ec9cfc6ff1f8e22471af66af170edcc35fb8 (patch)
tree1f697f65c2451fcf66e00bcd7a062dd1de31c97a /hunt
parent6f8367e238e03f94d7cad37b751809e6c86c5fd0 (diff)
downloadbsdgames-darwin-6cd6ec9cfc6ff1f8e22471af66af170edcc35fb8.tar.gz
bsdgames-darwin-6cd6ec9cfc6ff1f8e22471af66af170edcc35fb8.tar.zst
bsdgames-darwin-6cd6ec9cfc6ff1f8e22471af66af170edcc35fb8.zip
__attribute__((__noreturn__)) -> __dead
Diffstat (limited to 'hunt')
-rw-r--r--hunt/huntd/hunt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/hunt/huntd/hunt.h b/hunt/huntd/hunt.h
index 20f33d41..512ec3eb 100644
--- a/hunt/huntd/hunt.h
+++ b/hunt/huntd/hunt.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hunt.h,v 1.12 2008/01/28 03:23:29 dholland Exp $ */
+/* $NetBSD: hunt.h,v 1.13 2009/07/04 03:27:57 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@@ -472,10 +472,10 @@ void start_driver(void);
void stmonitor(PLAYER *);
void stplayer(PLAYER *, int);
char translate(char);
-SIGNAL_TYPE cleanup(int) __attribute__((__noreturn__));
+SIGNAL_TYPE cleanup(int) __dead;
SIGNAL_TYPE intr(int);
SIGNAL_TYPE sigalrm(int);
-SIGNAL_TYPE sigemt(int) __attribute__((__noreturn__));
-SIGNAL_TYPE sigterm(int) __attribute__((__noreturn__));
-SIGNAL_TYPE sigusr1(int) __attribute__((__noreturn__));
+SIGNAL_TYPE sigemt(int) __dead;
+SIGNAL_TYPE sigterm(int) __dead;
+SIGNAL_TYPE sigusr1(int) __dead;
SIGNAL_TYPE tstp(int);