From b32b454ffc6a722c38a510f10d856e6c504579cf Mon Sep 17 00:00:00 2001 From: lukem Date: Sat, 11 Oct 1997 02:44:30 +0000 Subject: minor KNFify --- cribbage/instr.c | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'cribbage/instr.c') diff --git a/cribbage/instr.c b/cribbage/instr.c index e4409bc2..0c12f965 100644 --- a/cribbage/instr.c +++ b/cribbage/instr.c @@ -1,4 +1,4 @@ -/* $NetBSD: instr.c,v 1.6 1997/10/10 12:32:30 lukem Exp $ */ +/* $NetBSD: instr.c,v 1.7 1997/10/11 02:44:31 lukem Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)instr.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: instr.c,v 1.6 1997/10/10 12:32:30 lukem Exp $"); +__RCSID("$NetBSD: instr.c,v 1.7 1997/10/11 02:44:31 lukem Exp $"); #endif #endif /* not lint */ @@ -47,6 +47,7 @@ __RCSID("$NetBSD: instr.c,v 1.6 1997/10/10 12:32:30 lukem Exp $"); #include #include +#include #include #include #include @@ -65,15 +66,11 @@ instructions() pid_t pid; char *pager, *path; - if (stat(_PATH_INSTR, &sb)) { - (void)fprintf(stderr, "cribbage: %s: %s.\n", _PATH_INSTR, - strerror(errno)); - exit(1); - } + if (stat(_PATH_INSTR, &sb)) + err(1, "stat %s", _PATH_INSTR); switch (pid = vfork()) { case -1: - (void)fprintf(stderr, "cribbage: %s.\n", strerror(errno)); - exit(1); + err(1, "vfork"); case 0: if (!(path = getenv("PAGER"))) path = _PATH_MORE; @@ -81,7 +78,7 @@ instructions() ++pager; pager = path; execlp(path, pager, _PATH_INSTR, NULL); - (void)fprintf(stderr, "cribbage: %s.\n", strerror(errno)); + warn("%s", ""); _exit(1); default: do { -- cgit v1.2.3-56-ge451