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
This commit is contained in:
Conrad Meyer 2016-09-19 20:43:03 +00:00
parent ac7715e39e
commit d36899d10f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305998
3 changed files with 3 additions and 3 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>