diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-13 03:34:26 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-13 03:34:26 +0000 |
commit | fd27f5ee344dcaf5c843adbff4f3f3a115dbbd40 (patch) | |
tree | 19147743dcd561489425b296f2c7b2560ee71fcc | |
parent | 3cd7fc7640b18b3ccefabee2dc03432217c6ed58 (diff) |
added realloc
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1404 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index eb67d20fe7..8d37b39beb 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -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... */ |