diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-01-14 04:47:09 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-01-14 04:47:09 +0000 |
commit | 2aa2d19da380ff96dbb4d2c0b31d004676895aa6 (patch) | |
tree | 4fa2f9666309381d7e89bc64fe061e0f4557a543 /usr.bin | |
parent | 1ae4062a51f269066f014b8d7eff07ee0358310a (diff) |
Use <fcntl.h>, not <sys/file.h>. Approved by Bob Corbett.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/yacc/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/yacc/main.c b/usr.bin/yacc/main.c index 981a3cd7a2d..406fad58a66 100644 --- a/usr.bin/yacc/main.c +++ b/usr.bin/yacc/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.5 1996/06/26 05:44:38 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.6 1997/01/14 04:47:08 tholo Exp $ */ /* $NetBSD: main.c,v 1.5 1996/03/19 03:21:38 jtc Exp $ */ /* @@ -47,12 +47,12 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 5.5 (Berkeley) 5/24/93"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.5 1996/06/26 05:44:38 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.6 1997/01/14 04:47:08 tholo Exp $"; #endif #endif /* not lint */ #include <sys/types.h> -#include <sys/file.h> +#include <fcntl.h> #include <stdlib.h> #include <signal.h> #include "defs.h" |