pintos: Avoid literal control character in Perl variable name.
[pintos-anon] / src / threads / malloc.h
index 8509f6f8999004713b99da90483a6e8ece6d2481..bc55d362b0c7276eb335b8d5d898c508db48675f 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>
@@ -7,6 +7,7 @@
 void malloc_init (void);
 void *malloc (size_t) __attribute__ ((malloc));
 void *calloc (size_t, size_t) __attribute__ ((malloc));
+void *realloc (void *, size_t);
 void free (void *);
 
-#endif /* malloc.h */
+#endif /* threads/malloc.h */