diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-07-20 05:49:31 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-07-20 05:49:31 +0000 |
commit | 2fcde282d34acccded8a452045108a94cde59c5d (patch) | |
tree | 4287fa3eafabcd40149a8487df0d2a3810bb01fc /sys/uvm | |
parent | 42f02eae5ddc2e138e7a6853160a5417d980bce5 (diff) |
include sys/user.h to unbreak the build on at least arm after rev 1.110
ok miod@
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_mmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/uvm/uvm_mmap.c b/sys/uvm/uvm_mmap.c index cd4b7e76ad8..efce8514c13 100644 --- a/sys/uvm/uvm_mmap.c +++ b/sys/uvm/uvm_mmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_mmap.c,v 1.110 2015/07/20 00:56:10 guenther Exp $ */ +/* $OpenBSD: uvm_mmap.c,v 1.111 2015/07/20 05:49:30 jsg Exp $ */ /* $NetBSD: uvm_mmap.c,v 1.49 2001/02/18 21:19:08 chs Exp $ */ /* @@ -66,6 +66,7 @@ #include <sys/specdev.h> #include <sys/stdint.h> #include <sys/unistd.h> /* for KBIND* */ +#include <sys/user.h> #include <machine/exec.h> /* for __LDPGSZ */ |