aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2016-09-19 20:43:03 +0000
committerConrad Meyer <cem@FreeBSD.org>2016-09-19 20:43:03 +0000
commitd36899d10f5d4eb96c888ad6317e69b430c1b200 (patch)
tree45ccfd5ecb4b20fb68ca8783d84f9764f87b4f45 /usr.bin
parentac7715e39e21397a73e6c0cd9e83471a4814e05d (diff)
downloadsrc-d36899d10f5d4eb96c888ad6317e69b430c1b200.tar.gz
src-d36899d10f5d4eb96c888ad6317e69b430c1b200.zip
Move sys/capsicum.h includes after types.h or param.h
This is not actually documented or even implied in style(9). Make the change to match convention. Someone should document this convention in style(9). Reported by: jhb Sponsored by: EMC Dell Isilon
Notes
Notes: svn path=/head/; revision=305998
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cmp/cmp.c2
-rw-r--r--usr.bin/indent/indent.c2
-rw-r--r--usr.bin/tr/tr.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cmp/cmp.c b/usr.bin/cmp/cmp.c
index 44f2fa3f3d1e..b1e0c4cc9106 100644
--- a/usr.bin/cmp/cmp.c
+++ b/usr.bin/cmp/cmp.c
@@ -42,8 +42,8 @@ static char sccsid[] = "@(#)cmp.c 8.3 (Berkeley) 4/2/94";
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/capsicum.h>
#include <sys/types.h>
+#include <sys/capsicum.h>
#include <sys/stat.h>
#include <err.h>
diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c
index 5247a4768082..03e649facfb6 100644
--- a/usr.bin/indent/indent.c
+++ b/usr.bin/indent/indent.c
@@ -50,8 +50,8 @@ static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93";
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/capsicum.h>
#include <sys/param.h>
+#include <sys/capsicum.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/usr.bin/tr/tr.c b/usr.bin/tr/tr.c
index c3bac6e9f608..b22ae7d3e248 100644
--- a/usr.bin/tr/tr.c
+++ b/usr.bin/tr/tr.c
@@ -41,8 +41,8 @@ static const char copyright[] =
static const char sccsid[] = "@(#)tr.c 8.2 (Berkeley) 5/4/95";
#endif
-#include <sys/capsicum.h>
#include <sys/types.h>
+#include <sys/capsicum.h>
#include <ctype.h>
#include <err.h>