diff options
author | 2016-05-01 20:34:26 +0000 | |
---|---|---|
committer | 2016-05-01 20:34:26 +0000 | |
commit | 1da77805bdfaebfa7cde34b36b3c9dc3499534d0 (patch) | |
tree | ff5e9c3278c9b1cd0d01cff6d5bf8c5b03ea6de7 /usr.bin/file/file.c | |
parent | Add bus width switching support for MMC. Enable 8-bit bus support on (diff) | |
download | wireguard-openbsd-1da77805bdfaebfa7cde34b36b3c9dc3499534d0.tar.xz wireguard-openbsd-1da77805bdfaebfa7cde34b36b3c9dc3499534d0.zip |
Tidy up some #include lines.
Diffstat (limited to 'usr.bin/file/file.c')
-rw-r--r-- | usr.bin/file/file.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/usr.bin/file/file.c b/usr.bin/file/file.c index d6987e32f2a..66709054a92 100644 --- a/usr.bin/file/file.c +++ b/usr.bin/file/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.57 2015/12/24 11:45:34 jca Exp $ */ +/* $OpenBSD: file.c,v 1.58 2016/05/01 20:34:26 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott <nicm@openbsd.org> @@ -19,21 +19,25 @@ #include <sys/types.h> #include <sys/ioctl.h> #include <sys/mman.h> -#include <sys/socket.h> #include <sys/queue.h> +#include <sys/socket.h> +#include <sys/stat.h> #include <sys/uio.h> #include <sys/wait.h> +#include <err.h> #include <errno.h> +#include <fcntl.h> +#include <getopt.h> #include <imsg.h> #include <libgen.h> -#include <getopt.h> -#include <fcntl.h> +#include <limits.h> #include <pwd.h> #include <stdlib.h> +#include <stdlib.h> +#include <string.h> #include <time.h> #include <unistd.h> -#include <limits.h> #include "file.h" #include "magic.h" |