diff options
author | 2015-07-20 05:49:30 +0000 | |
---|---|---|
committer | 2015-07-20 05:49:30 +0000 | |
commit | 6c5265c4d3eb54adb95b720a86c1c75ad887e0c2 (patch) | |
tree | dadef96e735c2feddb8dc7679239df4c16ba5d7a | |
parent | Fix white spaces. (diff) | |
download | wireguard-openbsd-6c5265c4d3eb54adb95b720a86c1c75ad887e0c2.tar.xz wireguard-openbsd-6c5265c4d3eb54adb95b720a86c1c75ad887e0c2.zip |
include sys/user.h to unbreak the build on at least arm after rev 1.110
ok miod@
-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 */ |