summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2017-08-29 21:10:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2017-08-29 21:10:21 +0000
commit8d99b6464763de8f71728b10171c26c0f68bd6cc (patch)
treee6af26a3ff4db271474c703c8540b758386bcf37 /sbin
parentcd86de26d227088c4f271f8bd65b803be31f698b (diff)
quarterly rescan of the tree: remove unneccessary sys/param.h, and
annotate the ones which are needed.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ifconfig/ifconfig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c
index bb52ac90458..0d2bedbabe2 100644
--- a/sbin/ifconfig/ifconfig.c
+++ b/sbin/ifconfig/ifconfig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ifconfig.c,v 1.347 2017/08/29 20:06:51 stsp Exp $ */
+/* $OpenBSD: ifconfig.c,v 1.348 2017/08/29 21:10:20 deraadt Exp $ */
/* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */
/*
@@ -60,10 +60,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sys/types.h>
+#include <sys/param.h> /* NBBY isset */
#include <sys/socket.h>
#include <sys/ioctl.h>
-#include <sys/param.h>
+#include <sys/time.h>
#include <net/if.h>
#include <net/if_dl.h>