Fix up header guards.
[pintos-anon] / src / threads / palloc.h
index 5b75e5563ea3795725b88793cbc58049b8f98150..ca7824e58c7c9282eda82f14b5b6a0cae6507561 100644 (file)
@@ -1,9 +1,5 @@
-#ifndef HEADER_PALLOC_H
-#define HEADER_PALLOC_H 1
-
-/* Page allocator.  Hands out memory in page-size chunks.
-   See malloc.h for an allocator that hands out smaller
-   chunks. */
+#ifndef THREADS_PALLOC_H
+#define THREADS_PALLOC_H
 
 #include <stdint.h>
 
@@ -17,4 +13,4 @@ void palloc_init (void);
 void *palloc_get (enum palloc_flags);
 void palloc_free (void *);
 
-#endif /* palloc.h */
+#endif /* threads/palloc.h */