summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-06-29 14:48:54 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-06-29 14:48:54 +0000
commitb02133e6ddb69a4ac708352cfa1fed439888a726 (patch)
treeb4a8f4e2524659b871a85ae87cb6b83c0e4265c7 /sys
parent4ae1e06afc7ca816081523116e7397cdea061774 (diff)
remove vm_inherit_t casts, not really needed; millert@
Diffstat (limited to 'sys')
-rw-r--r--sys/vm/vm_inherit.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/vm/vm_inherit.h b/sys/vm/vm_inherit.h
index ef1cb4a7fb1..e4df4005a6e 100644
--- a/sys/vm/vm_inherit.h
+++ b/sys/vm/vm_inherit.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_inherit.h,v 1.2 1996/08/02 00:06:00 niklas Exp $ */
+/* $OpenBSD: vm_inherit.h,v 1.3 1999/06/29 14:48:53 aaron Exp $ */
/* $NetBSD: vm_inherit.h,v 1.7 1994/06/29 06:47:58 cgd Exp $ */
/*
@@ -76,10 +76,10 @@
* Enumeration of valid values for vm_inherit_t.
*/
-#define VM_INHERIT_SHARE ((vm_inherit_t) 0) /* share with child */
-#define VM_INHERIT_COPY ((vm_inherit_t) 1) /* copy into child */
-#define VM_INHERIT_NONE ((vm_inherit_t) 2) /* absent from child */
-#define VM_INHERIT_DONATE_COPY ((vm_inherit_t) 3) /* copy and delete */
+#define VM_INHERIT_SHARE 0 /* share with child */
+#define VM_INHERIT_COPY 1 /* copy into child */
+#define VM_INHERIT_NONE 2 /* absent from child */
+#define VM_INHERIT_DONATE_COPY 3 /* copy and delete */
#define VM_INHERIT_DEFAULT VM_INHERIT_COPY