summaryrefslogtreecommitdiff
path: root/games/cribbage/instr.c
diff options
context:
space:
mode:
authormestre <mestre@cvs.openbsd.org>2016-01-10 13:35:11 +0000
committermestre <mestre@cvs.openbsd.org>2016-01-10 13:35:11 +0000
commit88a702d55b47acbe595220ed818f39dff08ffe09 (patch)
treea6f71154ae66fb0aed5d709a52de4f8c2ca5883e /games/cribbage/instr.c
parent59a54c3af6d813daca1741fd697a634dfde401ef (diff)
As per style(9), remove remaining lint-style comments from games/
OK tb@
Diffstat (limited to 'games/cribbage/instr.c')
-rw-r--r--games/cribbage/instr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/games/cribbage/instr.c b/games/cribbage/instr.c
index d4abfe52af2..90fb9a3cc79 100644
--- a/games/cribbage/instr.c
+++ b/games/cribbage/instr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: instr.c,v 1.13 2015/12/31 18:10:20 mestre Exp $ */
+/* $OpenBSD: instr.c,v 1.14 2016/01/10 13:35:09 mestre Exp $ */
/* $NetBSD: instr.c,v 1.5 1997/07/10 06:47:30 mikel Exp $ */
/*-
@@ -55,7 +55,6 @@ instructions(void)
switch (pid = vfork()) {
case -1:
err(1, "vfork");
- /* NOTREACHED */
case 0:
if (!isatty(1))
pager = "/bin/cat";
@@ -67,7 +66,6 @@ instructions(void)
err(1, "dup2");
execl(_PATH_BSHELL, "sh", "-c", pager, (char *)NULL);
err(1, "exec sh -c %s", pager);
- /* NOTREACHED */
default:
do {
pid = waitpid(pid, &pstat, 0);