Fix compiling netstat after r290367 by substituting sys/types.h for

sys/param.h, as sys/param.h defines the MAX(..) macro

Reported by: O. Hartmann <ohartman@zedat.fu-berlin.de>
Pointyhat to: ume
This commit is contained in:
Enji Cooper 2015-11-06 08:43:12 +00:00
parent e85d791ca2
commit f9b3502ce1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=290437

View File

@ -37,7 +37,7 @@ static char sccsid[] = "@(#)if.c 8.3 (Berkeley) 4/28/95";
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>