Define FALSE and TRUE in <sys/param.h> (if KERNEL is defined) as well

as in <vm/vm_param.h> so that <vm/vm.h> doesn't have to be included
in kernel sources just to get the definitions of these fundamental
vm (;-) quantities.
This commit is contained in:
Bruce Evans 1995-12-05 21:03:13 +00:00
parent 0ff89d5b03
commit 466b676ad5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12643

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)param.h 8.2 (Berkeley) 1/21/94
* $Id: param.h,v 1.8 1995/05/14 03:00:05 davidg Exp $
* $Id: param.h,v 1.9 1995/10/06 09:56:26 phk Exp $
*/
#ifndef _SYS_PARAM_H_
@ -82,6 +82,9 @@
#include <sys/ucred.h>
#include <sys/uio.h>
#include <sys/rtprio.h>
#define FALSE 0
#define TRUE 1
#endif
/* Signals. */