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 /libexec/rpc.rquotad | |
parent | fe89691a2e6a46dc13e58dde591c3c37ac355e5c (diff) |
More <sys/file.h> vs. <fcntl.h> and open() flags fixes.
Diffstat (limited to 'libexec/rpc.rquotad')
-rw-r--r-- | libexec/rpc.rquotad/rquotad.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libexec/rpc.rquotad/rquotad.c b/libexec/rpc.rquotad/rquotad.c index 99625c07af7..b1cf5408fbd 100644 --- a/libexec/rpc.rquotad/rquotad.c +++ b/libexec/rpc.rquotad/rquotad.c @@ -7,19 +7,18 @@ #include <sys/param.h> #include <sys/types.h> #include <sys/mount.h> -#include <sys/file.h> #include <sys/stat.h> #include <signal.h> -#include <stdio.h> -#include <fstab.h> #include <ctype.h> +#include <errno.h> +#include <fcntl.h> +#include <fstab.h> +#include <grp.h> +#include <pwd.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include <pwd.h> -#include <grp.h> -#include <errno.h> - #include <syslog.h> #include <varargs.h> |