diff options
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 883936c5..9fcc4f0a 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -19,6 +19,9 @@ * needed for kernel allocation. */ +#include <stddef.h> +#include <stdint.h> + #include <kern/assert.h> #include <kern/error.h> #include <kern/init.h> @@ -30,8 +33,6 @@ #include <kern/param.h> #include <kern/printk.h> #include <kern/rbtree.h> -#include <kern/stddef.h> -#include <kern/stdint.h> #include <machine/pmap.h> #include <vm/vm_adv.h> #include <vm/vm_inherit.h> |