diff options
author | Richard Braun <rbraun@sceen.net> | 2017-02-04 16:21:10 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-02-04 16:21:10 +0100 |
commit | 7a00044da882d30b1dea8757c7f6a1ccaa9ee08d (patch) | |
tree | 9e342eca8a673ac9b0982c3e4bda22ff5158690e /vm/vm_kmem.h | |
parent | d09b913612712c7d58e5ee3ee20703cce63ad0b0 (diff) |
kern/types: split into module-specific type headers
Using a single header for all types causing inclusion circular
dependencies isn't very elegant and doesn't scale.
Diffstat (limited to 'vm/vm_kmem.h')
-rw-r--r-- | vm/vm_kmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_kmem.h b/vm/vm_kmem.h index a5e5e6d0..eafb4183 100644 --- a/vm/vm_kmem.h +++ b/vm/vm_kmem.h @@ -18,8 +18,8 @@ #ifndef _VM_VM_KMEM_H #define _VM_VM_KMEM_H -#include <kern/types.h> #include <kern/stdint.h> +#include <machine/types.h> /* * The kernel space is required not to start at address 0, which is used to |