diff options
author | mestre <mestre@cvs.openbsd.org> | 2015-12-26 00:26:41 +0000 |
---|---|---|
committer | mestre <mestre@cvs.openbsd.org> | 2015-12-26 00:26:41 +0000 |
commit | cd3ae956e87cd9a71362c652453ed1b666e3400c (patch) | |
tree | 552c5d7229cdaed36d4263180993b1fa2dec6bf8 /games/adventure | |
parent | 3fb26cc31d7a4478dc8f38b04bdd6993f60fb4f5 (diff) |
Set as __dead a few more functions, that don't return, on games/
With precious tip, help and also OK from tb@
Diffstat (limited to 'games/adventure')
-rw-r--r-- | games/adventure/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/adventure/extern.h b/games/adventure/extern.h index 030ac195e4b..6ce753619c0 100644 --- a/games/adventure/extern.h +++ b/games/adventure/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.7 2004/07/09 15:59:26 deraadt Exp $ */ +/* $OpenBSD: extern.h,v 1.8 2015/12/26 00:26:39 mestre Exp $ */ /* $NetBSD: extern.h,v 1.3 1997/10/11 01:55:27 lukem Exp $ */ /* @@ -96,7 +96,7 @@ int mback(void); int specials(void); int trbridge(void); void badmove(void); -void bug(int); +__dead void bug(int); void checkhints(void); int trsay(void); int trtake(void); |