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/canfield | |
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/canfield')
-rw-r--r-- | games/canfield/canfield/canfield.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/canfield/canfield/canfield.c b/games/canfield/canfield/canfield.c index 9caff843064..f87a1ef872b 100644 --- a/games/canfield/canfield/canfield.c +++ b/games/canfield/canfield/canfield.c @@ -1,4 +1,4 @@ -/* $OpenBSD: canfield.c,v 1.22 2015/12/02 18:34:10 tb Exp $ */ +/* $OpenBSD: canfield.c,v 1.23 2015/12/26 00:26:39 mestre Exp $ */ /* $NetBSD: canfield.c,v 1.7 1995/05/13 07:28:35 jtc Exp $ */ /* @@ -186,7 +186,7 @@ time_t acctstart; int dbfd = -1; void askquit(int); -void cleanup(int) __attribute__((__noreturn__)); +__dead void cleanup(int); void cleanupboard(void); void clearabovemovebox(void); void clearbelowmovebox(void); |