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 /lib/libc/yp | |
parent | fe89691a2e6a46dc13e58dde591c3c37ac355e5c (diff) |
More <sys/file.h> vs. <fcntl.h> and open() flags fixes.
Diffstat (limited to 'lib/libc/yp')
-rw-r--r-- | lib/libc/yp/yp_bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/yp/yp_bind.c b/lib/libc/yp/yp_bind.c index 6738701d48e..47cf920737b 100644 --- a/lib/libc/yp/yp_bind.c +++ b/lib/libc/yp/yp_bind.c @@ -31,15 +31,15 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: yp_bind.c,v 1.9 1997/04/29 21:25:20 deraadt Exp $"; +static char *rcsid = "$OpenBSD: yp_bind.c,v 1.10 1999/08/17 09:13:13 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> #include <sys/types.h> #include <sys/socket.h> -#include <sys/file.h> #include <sys/uio.h> #include <errno.h> +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |