diff options
author | tb <tb@cvs.openbsd.org> | 2016-01-07 16:00:35 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2016-01-07 16:00:35 +0000 |
commit | 93e376267b624e9b6d6dc70ec32418c59d2a25b0 (patch) | |
tree | 9b0fedba72c0c99cf7d268ba0c169cb908c27a59 /games/quiz | |
parent | 58a106c10757a33412a67cbda574c32351dea1a8 (diff) |
Some basic code maintenance in games/
- in main() replace exit with return
- drop some /* NOTREACHED */ lint comments along the way.
- make more use of standard CFLAGS, esp. -Wimplicit-function-declaration
- add and sort some headers when needed
- add straightforward pledges to some programs used at compile time
discussed with and ok mestre@
Diffstat (limited to 'games/quiz')
-rw-r--r-- | games/quiz/quiz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/quiz/quiz.c b/games/quiz/quiz.c index dd632ec661a..23ad0584af1 100644 --- a/games/quiz/quiz.c +++ b/games/quiz/quiz.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quiz.c,v 1.26 2016/01/04 17:33:24 mestre Exp $ */ +/* $OpenBSD: quiz.c,v 1.27 2016/01/07 16:00:33 tb Exp $ */ /* $NetBSD: quiz.c,v 1.9 1995/04/22 10:16:58 cgd Exp $ */ /*- @@ -98,7 +98,7 @@ main(int argc, char *argv[]) default: usage(); } - exit(0); + return 0; } void |