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 /arch/x86/machine/strace.c | |
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 'arch/x86/machine/strace.c')
-rw-r--r-- | arch/x86/machine/strace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/machine/strace.c b/arch/x86/machine/strace.c index 80849acf..e65efb08 100644 --- a/arch/x86/machine/strace.c +++ b/arch/x86/machine/strace.c @@ -21,11 +21,11 @@ #include <kern/printk.h> #include <kern/stddef.h> #include <kern/string.h> -#include <kern/types.h> #include <machine/elf.h> #include <machine/multiboot.h> #include <machine/pmap.h> #include <machine/strace.h> +#include <machine/types.h> #include <vm/vm_kmem.h> #ifdef __LP64__ |