diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-12 08:46:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-12 08:46:01 +0000 |
commit | 9e30e47ba96305a4e2e363970306ee69df00ef6a (patch) | |
tree | b174b93407e836f4c08541db57ae4478bb951552 /sys/vm | |
parent | a53182d081c8186391c8e08152b9569b85618212 (diff) |
careful about redefining TRUE and FALSE
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_param.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index eb413701e6b..74124a226cf 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_param.h,v 1.12 1997/11/13 18:35:39 deraadt Exp $ */ +/* $OpenBSD: vm_param.h,v 1.13 1997/12/12 08:46:00 deraadt Exp $ */ /* $NetBSD: vm_param.h,v 1.12 1995/03/26 20:39:16 jtc Exp $ */ /* @@ -78,8 +78,12 @@ * This belongs in types.h, but breaks too many existing programs. */ typedef int boolean_t; +#ifndef TRUE #define TRUE 1 +#endif +#ifndef FALSE #define FALSE 0 +#endif /* * The machine independent pages are refered to as PAGES. A page |