diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-09-13 10:05:26 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-09-13 10:05:26 +0000 |
commit | 149809936774173e03c9df8fd249658d1c796df3 (patch) | |
tree | bbbfc8c77ce6a97d21406d319eaecf2e09c05aa9 /sys/uvm/uvm_addr.c | |
parent | 2d61ee0f929af3ac509a2986fa6bfd3236b6a6e5 (diff) |
Include <sys/systm.h> directly instead of relying on uvm_map.h to pull it.
Diffstat (limited to 'sys/uvm/uvm_addr.c')
-rw-r--r-- | sys/uvm/uvm_addr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/uvm/uvm_addr.c b/sys/uvm/uvm_addr.c index a5e4a644e0a..7d3ac99b952 100644 --- a/sys/uvm/uvm_addr.c +++ b/sys/uvm/uvm_addr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_addr.c,v 1.27 2018/05/16 09:02:11 otto Exp $ */ +/* $OpenBSD: uvm_addr.c,v 1.28 2020/09/13 10:05:25 mpi Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl> @@ -19,6 +19,7 @@ /* #define DEBUG */ #include <sys/param.h> +#include <sys/systm.h> #include <uvm/uvm.h> #include <uvm/uvm_addr.h> #include <sys/pool.h> |