Fix up header guards.
[pintos-anon] / src / threads / mmu.h
index 7e68b29481442dbb399c2559917f14ff41b6cdcb..4e9340abe962242b01e43b1a03e264252c04910d 100644 (file)
@@ -1,12 +1,12 @@
-#ifndef HEADER_MMU_H
-#define HEADER_MMU_H 1
+#ifndef THREADS_MMU_H
+#define THREADS_MMU_H
 
 #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))
 
@@ -85,4 +85,4 @@ vtop (void *vaddr)
 #define FLAG_MBS  0x00000002    /* Must be set. */
 #define FLAG_IF   0x00000200    /* Interrupt Flag. */
 
-#endif /* mmu.h */
+#endif /* threads/mmu.h */