[mem] Oops, don't forget that.

This commit is contained in:
Kevin Lange 2011-02-27 22:00:08 -06:00
parent 407558256d
commit 937f1dd547

View File

@ -129,6 +129,7 @@ void heap_install();
void * __attribute__ ((malloc)) malloc(size_t size);
void * __attribute__ ((malloc)) realloc(void *ptr, size_t size);
void * __attribute__ ((malloc)) calloc(size_t nmemb, size_t size);
void * __attribute__ ((malloc)) valloc(size_t size);
void free(void *ptr);
/* shell */