Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / threads / malloc.h
index 2f191557817347e1f9c8d5c6bf6aacc710d79b79..bc55d362b0c7276eb335b8d5d898c508db48675f 100644 (file)
@@ -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 /* threads/malloc.h */