summaryrefslogtreecommitdiffstats
path: root/adventure/extern.h
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-08-25 06:58:04 +0000
committerdholland <dholland@NetBSD.org>2009-08-25 06:58:04 +0000
commit426c0aba2be16817b2d722d6bd1af999c494defb (patch)
treeabbbffabf2bc33c0048cf0a36a59f6ec0238b9e1 /adventure/extern.h
parent630c158db305e2fc45fe246eed30045d50c1ec4d (diff)
downloadbsdgames-darwin-426c0aba2be16817b2d722d6bd1af999c494defb.tar.gz
bsdgames-darwin-426c0aba2be16817b2d722d6bd1af999c494defb.tar.zst
bsdgames-darwin-426c0aba2be16817b2d722d6bd1af999c494defb.zip
Use __dead.
Diffstat (limited to 'adventure/extern.h')
-rw-r--r--adventure/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/adventure/extern.h b/adventure/extern.h
index fbc7cf51..01beb9fc 100644
--- a/adventure/extern.h
+++ b/adventure/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.12 2009/08/25 06:56:52 dholland Exp $ */
+/* $NetBSD: extern.h,v 1.13 2009/08/25 06:58:04 dholland Exp $ */
/*
* Copyright (c) 1997 Christos Zoulas. All rights reserved.
@@ -37,7 +37,7 @@ unsigned long crc(const char *, int);
/* done.c */
int score(void);
-void done(int) __attribute__((__noreturn__));
+void done(int) __dead;
void die(int);
/* init.c */
@@ -75,7 +75,7 @@ int dark(void);
int pct(int);
int fdwarf(void);
int march(void);
-void bug(int) __attribute__((__noreturn__));
+void bug(int) __dead;
void checkhints(void);
int trsay(void);
int trtake(void);