added realloc

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1404 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2004-03-13 03:34:26 +00:00
parent 3cd7fc7640
commit fd27f5ee34
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include <stddef.h>
extern void *malloc(size_t size);
extern void *realloc(void *mem, size_t size);
void free(void *ptr);
/* Extensions to malloc... */