diff options
author | Ian Moffett <ian@osmora.org> | 2024-07-15 21:58:37 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-07-15 22:14:00 -0400 |
commit | 824bcfbba8effd367f53c91298cb3bb06415571a (patch) | |
tree | 8474506a29eaa395772ded7836569154dc11e27d | |
parent | 320f1c6a451548b939483d8956111438238c6515 (diff) |
kernel: proc: Add missing include
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/include/sys/proc.h | 1 |
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) |