summaryrefslogtreecommitdiff
path: root/vm/vm_phys.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-11-03 17:30:15 +0100
committerRichard Braun <rbraun@sceen.net>2012-11-03 17:30:15 +0100
commit27484e07cdd0be148743cb8e4acd99e96264eca9 (patch)
tree3d32b0b274a879e5f814ff366b7d8bd6f2c973ba /vm/vm_phys.c
parent6b04aaae27ef9cc26487da1dd2acf75f3b49e3f5 (diff)
Merge lib into kern
There are no precise enough criteria to justify the separation of these two directories.
Diffstat (limited to 'vm/vm_phys.c')
-rw-r--r--vm/vm_phys.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/vm/vm_phys.c b/vm/vm_phys.c
index 81e655bf..9fcc7cc9 100644
--- a/vm/vm_phys.c
+++ b/vm/vm_phys.c
@@ -29,17 +29,17 @@
* The symmetric case is handled likewise.
*/
+#include <kern/assert.h>
#include <kern/init.h>
+#include <kern/list.h>
+#include <kern/macros.h>
#include <kern/panic.h>
#include <kern/param.h>
#include <kern/printk.h>
+#include <kern/sprintf.h>
+#include <kern/stddef.h>
+#include <kern/string.h>
#include <kern/types.h>
-#include <lib/assert.h>
-#include <lib/list.h>
-#include <lib/macros.h>
-#include <lib/sprintf.h>
-#include <lib/stddef.h>
-#include <lib/string.h>
#include <machine/cpu.h>
#include <vm/vm_kmem.h>
#include <vm/vm_page.h>