Remove duplicated includes.

Submitted by:	Mariusz Zaborski <oshogbo@FreeBSD.org>
This commit is contained in:
Pawel Jakub Dawidek 2014-06-26 13:57:44 +00:00
parent 17f53388d6
commit e16406c7ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267914
4 changed files with 2 additions and 9 deletions

View File

@ -43,8 +43,6 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/capsicum.h>
#include "dhcpd.h"
#include "privsep.h"
#include <sys/capsicum.h>

View File

@ -56,8 +56,6 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/capsicum.h>
#include "dhcpd.h"
#include "privsep.h"

View File

@ -35,7 +35,6 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/capsicum.h>
#include <sys/systm.h>
#include <sys/capsicum.h>
#include <sys/eventhandler.h>
#include <sys/lock.h>
#include <sys/mutex.h>

View File

@ -34,16 +34,14 @@ __FBSDID("$FreeBSD$");
* Note that this file is compiled into the kernel and into libc.
*/
#ifdef _KERNEL
#include <sys/types.h>
#include <sys/capsicum.h>
#ifdef _KERNEL
#include <sys/systm.h>
#include <machine/stdarg.h>
#else /* !_KERNEL */
#include <sys/types.h>
#include <sys/capsicum.h>
#include <assert.h>
#include <stdarg.h>
#include <stdbool.h>