aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-07-15 21:58:37 -0400
committerIan Moffett <ian@osmora.org>2024-07-15 22:14:00 -0400
commit824bcfbba8effd367f53c91298cb3bb06415571a (patch)
tree8474506a29eaa395772ded7836569154dc11e27d /sys
parent320f1c6a451548b939483d8956111438238c6515 (diff)
kernel: proc: Add missing include
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r--sys/include/sys/proc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h
index f168072..ab13536 100644
--- a/sys/include/sys/proc.h
+++ b/sys/include/sys/proc.h
@@ -39,6 +39,7 @@
#if defined(_KERNEL)
#include <machine/frame.h>
#include <machine/pcb.h>
+#include <vm/vm.h>
#endif /* _KERNEL */
#if defined(_KERNEL)