From 56b3b679266d099eba0ac4e8282b239c652357c3 Mon Sep 17 00:00:00 2001 From: jsm Date: Wed, 8 Sep 1999 21:57:16 +0000 Subject: Use the symbolic names `SEEK_SET' and `O_RDONLY' where appropriate in the games. --- hangman/getword.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hangman') diff --git a/hangman/getword.c b/hangman/getword.c index 3539c140..28fa3b8d 100644 --- a/hangman/getword.c +++ b/hangman/getword.c @@ -1,4 +1,4 @@ -/* $NetBSD: getword.c,v 1.5 1997/10/11 01:16:30 lukem Exp $ */ +/* $NetBSD: getword.c,v 1.6 1999/09/08 21:57:17 jsm Exp $ */ /* * Copyright (c) 1983, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)getword.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: getword.c,v 1.5 1997/10/11 01:16:30 lukem Exp $"); +__RCSID("$NetBSD: getword.c,v 1.6 1999/09/08 21:57:17 jsm Exp $"); #endif #endif /* not lint */ @@ -58,7 +58,7 @@ getword() inf = Dict; for (;;) { pos = (double) rand() / (RAND_MAX + 1.0) * (double) Dict_size; - fseek(inf, pos, 0); + fseek(inf, pos, SEEK_SET); if (fgets(Word, BUFSIZ, inf) == NULL) continue; if (fgets(Word, BUFSIZ, inf) == NULL) -- cgit v1.2.3-56-ge451