diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 04:48:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 04:48:11 +0000 |
commit | ede550862764e0a7527447659ff18e32a3854830 (patch) | |
tree | cc8815a3ab8ba6118255513900d831b28066487f /sbin | |
parent | 148b5363c4a00bb62f1c3dfa8706a6ce45c44d2f (diff) |
only needs sys/types.h not sys/param.h
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index deef85657da..3ef98b7df7e 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.258 2012/11/23 20:12:38 sthen Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.259 2012/12/04 04:48:10 deraadt Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -60,7 +60,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> |