]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hangman/setup.c
remove spurious ^A's and ||
[bsdgames-darwin.git] / hangman / setup.c
index 4ba9f7dfe588cb55dca9ed8b2571928ffda21f50..f625e879b057012d319233b5121413ef25334631 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: setup.c,v 1.6 1999/09/08 21:17:50 jsm Exp $    */
+/*     $NetBSD: setup.c,v 1.9 2001/12/06 12:07:37 blymn Exp $  */
 
 /*-
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)setup.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: setup.c,v 1.6 1999/09/08 21:17:50 jsm Exp $");
+__RCSID("$NetBSD: setup.c,v 1.9 2001/12/06 12:07:37 blymn Exp $");
 #endif
 #endif                         /* not lint */
 
 #include       <err.h>
+#include       <time.h>
 #include       "hangman.h"
 
 /*
@@ -56,7 +57,7 @@ setup()
        static struct stat sbuf;
 
        noecho();
-       crmode();
+       cbreak();
 
        mvaddstr(PROMPTY, PROMPTX, "Guess:");
        mvaddstr(GUESSY, GUESSX, "Guessed:");
@@ -71,9 +72,9 @@ setup()
        }
 
        srand(time(NULL) + getpid());
-       if ((Dict = fopen(_PATH_DICT, "r")) == NULL) {
+       if ((Dict = fopen(Dict_name, "r")) == NULL) {
                endwin();
-               err(1, "fopen %s", _PATH_DICT);
+               err(1, "fopen %s", Dict_name);
        }
        fstat(fileno(Dict), &sbuf);
        Dict_size = sbuf.st_size;