Fix up header guards.
[pintos-anon] / src / threads / thread.h
index 27c1f041fa8f24f094cd666a3b50d8cd63840c0f..95173ffa51fe6f771a25b70ba135b12df090e00c 100644 (file)
@@ -1,9 +1,9 @@
-#ifndef HEADER_THREAD_H
-#define HEADER_THREAD_H 1
+#ifndef THREADS_THREAD_H
+#define THREADS_THREAD_H
 
+#include <debug.h>
+#include <list.h>
 #include <stdint.h>
-#include "lib/debug.h"
-#include "lib/list.h"
 
 #ifdef USERPROG
 #include "userprog/addrspace.h"
@@ -108,4 +108,4 @@ void thread_exit (void) NO_RETURN;
 void thread_yield (void);
 void thread_block (void);
 
-#endif /* thread.h */
+#endif /* threads/thread.h */