diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-17 09:13:17 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-17 09:13:17 +0000 |
commit | 63b7a98cc57e3a3fbf4e70bcd27a4eb65721c359 (patch) | |
tree | 04f5f18255e1ed724e1267f93be97b3001966d2b /games/rogue | |
parent | fe89691a2e6a46dc13e58dde591c3c37ac355e5c (diff) |
More <sys/file.h> vs. <fcntl.h> and open() flags fixes.
Diffstat (limited to 'games/rogue')
-rw-r--r-- | games/rogue/machdep.c | 4 |
1 files changed, 2 insertions, 2 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 |