malloc.h relies on param.h for a definition of MAXCPU. I guess that there is

other header pollution that makes this work right now, but it falls over when
doing a RELENG_5 -> HEAD upgrade.
This commit is contained in:
Scott Long 2005-05-30 05:01:44 +00:00
parent 2c075601cd
commit e39e116ca2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146797
2 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/malloc.h>
#include <sys/random.h>
#include <sys/selinfo.h>

View File

@ -36,6 +36,7 @@
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/malloc.h>
#include <sys/param.h>
#include <sys/systm.h>