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/gomoku/gomoku.h | |
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/gomoku/gomoku.h')
-rw-r--r-- | games/gomoku/gomoku.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/gomoku/gomoku.h b/games/gomoku/gomoku.h index b9b58684161..08aa7f27d82 100644 --- a/games/gomoku/gomoku.h +++ b/games/gomoku/gomoku.h @@ -1,4 +1,4 @@ -/* $OpenBSD: gomoku.h,v 1.10 2012/03/04 04:05:15 fgsch Exp $ */ +/* $OpenBSD: gomoku.h,v 1.11 2015/12/26 00:26:39 mestre Exp $ */ /* * Copyright (c) 1994 * The Regents of the University of California. All rights reserved. @@ -303,7 +303,7 @@ void panic(char *); int pickmove(int); void printcombo(struct combostr *, char *, size_t); void qlog(char *); -void quit(int); +__dead void quit(int); int readinput(FILE *); void scanframes(int); int sortcombo(struct combostr **, struct combostr **, struct combostr *); |