Fix up header guards.
[pintos-anon] / src / threads / malloc.h
index 8509f6f8999004713b99da90483a6e8ece6d2481..2f191557817347e1f9c8d5c6bf6aacc710d79b79 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef HEADER_MALLOC_H
-#define HEADER_MALLOC_H
+#ifndef THREADS_MALLOC_H
+#define THREADS_MALLOC_H
 
 #include <debug.h>
 #include <stddef.h>
@@ -9,4 +9,4 @@ void *malloc (size_t) __attribute__ ((malloc));
 void *calloc (size_t, size_t) __attribute__ ((malloc));
 void free (void *);
 
-#endif /* malloc.h */
+#endif /* threads/malloc.h */