]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
minor KNFify
authorlukem <lukem@NetBSD.org>
Sat, 11 Oct 1997 02:44:30 +0000 (02:44 +0000)
committerlukem <lukem@NetBSD.org>
Sat, 11 Oct 1997 02:44:30 +0000 (02:44 +0000)
cribbage/crib.c
cribbage/instr.c

index 696c86b2ef20b4ad6b2148df33f824c0f2d288cb..ce8778f4d3451700aa1d231151bd23bd269434c1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: crib.c,v 1.8 1997/10/10 12:32:24 lukem Exp $   */
+/*     $NetBSD: crib.c,v 1.9 1997/10/11 02:44:30 lukem Exp $   */
 
 /*-
  * Copyright (c) 1980, 1993
@@ -43,11 +43,12 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
 #if 0
 static char sccsid[] = "@(#)crib.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: crib.c,v 1.8 1997/10/10 12:32:24 lukem Exp $");
+__RCSID("$NetBSD: crib.c,v 1.9 1997/10/11 02:44:30 lukem Exp $");
 #endif
 #endif /* not lint */
 
 #include <curses.h>
+#include <err.h>
 #include <signal.h>
 #include <stdlib.h>
 #include <string.h>
@@ -134,11 +135,8 @@ main(argc, argv)
                (void) fclose(f);
        }
        bye();
-       if (!f) {
-               (void) fprintf(stderr, "\ncribbage: can't open %s.\n",
-                   _PATH_LOG);
-               exit(1);
-       }
+       if (!f)
+               errx(1, "can't open %s", _PATH_LOG);
        exit(0);
 }
 
index e4409bc21b6dec4ad1f126fe51478e5c0335173c..0c12f965ca23781878f36f7bb92b77c70981d1f1 100644 (file)
@@ -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 <sys/stat.h>
 
 #include <curses.h>
+#include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -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 {