diff options
author | 2004-05-23 19:37:24 +0000 | |
---|---|---|
committer | 2004-05-23 19:37:24 +0000 | |
commit | 8c116bc5bc93388270060543e08a82f3f13d2f05 (patch) | |
tree | 946e2b93d4d784b9efa407a1688a24940fd758a3 /sys/kern/kern_malloc.c | |
parent | sync (diff) | |
download | wireguard-openbsd-8c116bc5bc93388270060543e08a82f3f13d2f05.tar.xz wireguard-openbsd-8c116bc5bc93388270060543e08a82f3f13d2f05.zip |
according to fork1(9), retval is optional. make it so.
from form@pdp-11.org.ru via mpech. ok millert
Diffstat (limited to 'sys/kern/kern_malloc.c')
-rw-r--r-- | sys/kern/kern_malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 082a7b2d764..cdca5cc3995 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc.c,v 1.56 2003/12/28 16:35:46 tedu Exp $ */ +/* $OpenBSD: kern_malloc.c,v 1.57 2004/05/23 19:37:24 tedu Exp $ */ /* $NetBSD: kern_malloc.c,v 1.15.4.2 1996/06/13 17:10:56 cgd Exp $ */ /* @@ -40,6 +40,7 @@ #include <sys/sysctl.h> #include <uvm/uvm_extern.h> +#include <ddb/db_output.h> static struct vm_map_intrsafe kmem_map_store; struct vm_map *kmem_map = NULL; |