diff options
| author | dholland <dholland@NetBSD.org> | 2009-08-25 06:58:04 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2009-08-25 06:58:04 +0000 |
| commit | 7c9708a90986344328850ba58b078a8e1243477d (patch) | |
| tree | 4e348d94c27a0e375bfada29c0914fe955f62a22 /games/adventure | |
| parent | aa19a9d0a5dba8e0b5bb1974b44d136f24cc40df (diff) | |
Use __dead.
Diffstat (limited to 'games/adventure')
| -rw-r--r-- | games/adventure/extern.h | 6 |
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); |
