Have this source explicitly include <sys/proc.h>, since it references

values such as P_CONTROLT and PS_INMEM.  But this still won't define
PID_MAX for us, since that is hidden inside of '#ifdef _KERNEL'.

Noticed by:	bde
This commit is contained in:
Garance A Drosehn 2004-03-29 01:27:13 +00:00
parent aa89d858c9
commit c7910c3ae3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=127546

View File

@ -54,6 +54,7 @@ static char sccsid[] = "@(#)ps.c 8.4 (Berkeley) 4/2/94";
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/stat.h>
#include <sys/ioctl.h>