summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-08-17 09:13:17 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-08-17 09:13:17 +0000
commit63b7a98cc57e3a3fbf4e70bcd27a4eb65721c359 (patch)
tree04f5f18255e1ed724e1267f93be97b3001966d2b /games
parentfe89691a2e6a46dc13e58dde591c3c37ac355e5c (diff)
More <sys/file.h> vs. <fcntl.h> and open() flags fixes.
Diffstat (limited to 'games')
-rw-r--r--games/rogue/machdep.c4
-rw-r--r--games/wump/wump.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/games/rogue/machdep.c b/games/rogue/machdep.c
index 014e2a6247e..0923f7b8516 100644
--- a/games/rogue/machdep.c
+++ b/games/rogue/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.4 1998/08/22 08:55:31 pjanzen Exp $ */
+/* $OpenBSD: machdep.c,v 1.5 1999/08/17 09:13:12 millert Exp $ */
/* $NetBSD: machdep.c,v 1.5 1995/04/28 23:49:22 mycroft Exp $ */
/*
@@ -100,8 +100,8 @@ static char rcsid[] = "$NetBSD: machdep.c,v 1.5 1995/04/28 23:49:22 mycroft Exp
#include <sys/types.h>
#include <sys/wait.h>
-#include <sys/file.h>
#include <sys/stat.h>
+#include <fcntl.h>
#include <pwd.h>
#ifdef UNIX_BSD4_2
diff --git a/games/wump/wump.c b/games/wump/wump.c
index 1cc10765751..928fbd9dae2 100644
--- a/games/wump/wump.c
+++ b/games/wump/wump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wump.c,v 1.10 1999/07/31 18:52:00 pjanzen Exp $ */
+/* $OpenBSD: wump.c,v 1.11 1999/08/17 09:13:12 millert Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)wump.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: wump.c,v 1.10 1999/07/31 18:52:00 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: wump.c,v 1.11 1999/08/17 09:13:12 millert Exp $";
#endif
#endif /* not lint */
@@ -58,9 +58,9 @@ static char rcsid[] = "$OpenBSD: wump.c,v 1.10 1999/07/31 18:52:00 pjanzen Exp $
*/
#include <sys/types.h>
-#include <sys/file.h>
#include <sys/wait.h>
#include <err.h>
+#include <fcntl.h>
#include <paths.h>
#include <stdio.h>
#include <stdlib.h>