X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/04f4d7044367099914cf1906ae27ac20c24e44cf..139a741cdeedd23786cb2d0758e454efc4c6d4ea:/hangman/setup.c diff --git a/hangman/setup.c b/hangman/setup.c index 4ba9f7df..f625e879 100644 --- a/hangman/setup.c +++ b/hangman/setup.c @@ -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 @@ -38,11 +38,12 @@ #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 +#include #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;