Rename printk() to printf().
[pintos-anon] / src / threads / mmu.h
index 7e68b29481442dbb399c2559917f14ff41b6cdcb..c66ff1822a2af990de21e9b53d5d3b6a2b639658 100644 (file)
@@ -2,11 +2,11 @@
 #define HEADER_MMU_H 1
 
 #ifndef __ASSEMBLER__
+#include <debug.h>
 #include <stdint.h>
-#include "lib/debug.h"
 #endif
 
-#include "loader.h"
+#include "threads/loader.h"
 
 #define MASK(SHIFT, CNT) (((1ul << (CNT)) - 1) << (SHIFT))