summaryrefslogtreecommitdiff
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
commit7c9708a90986344328850ba58b078a8e1243477d (patch)
tree4e348d94c27a0e375bfada29c0914fe955f62a22
parentaa19a9d0a5dba8e0b5bb1974b44d136f24cc40df (diff)
Use __dead.
-rw-r--r--games/adventure/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/adventure/extern.h b/games/adventure/extern.h
index fbc7cf51e05..01beb9fc05d 100644
--- a/games/adventure/extern.h
+++ b/games/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);