diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-29 21:10:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-29 21:10:21 +0000 |
commit | 8d99b6464763de8f71728b10171c26c0f68bd6cc (patch) | |
tree | e6af26a3ff4db271474c703c8540b758386bcf37 /sbin | |
parent | cd86de26d227088c4f271f8bd65b803be31f698b (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.c | 6 |
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> |