Added xrealloc

git-svn-id: svn://svn.cc65.org/cc65/trunk@677 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-03-26 21:46:37 +00:00
parent c3e37a287a
commit 1ced0327ed
2 changed files with 24 additions and 4 deletions

View File

@@ -51,6 +51,9 @@
void* xmalloc (size_t Size);
/* Allocate memory, check for out of memory condition. Do some debugging */
void* xrealloc (void* P, size_t Size);
/* Reallocate a memory block, check for out of memory */
void xfree (const void* Block);
/* Free the block, do some debugging */