]> git.sur5r.net Git - cc65/blobdiff - src/common/xmalloc.h
Moved the chiplib module into chip.c
[cc65] / src / common / xmalloc.h
index d90a5c9d3d871eb390d0291e6e333541b4679ff7..e041b9b1f509709b3662d8aeb368ba6a7d4d4c7d 100644 (file)
 void* xmalloc (size_t Size);
 /* Allocate memory, check for out of memory condition. Do some debugging */
 
-void xfree (const void* Block);
+void* xrealloc (void* P, size_t Size);
+/* Reallocate a memory block, check for out of memory */
+
+void xfree (void* Block);
 /* Free the block, do some debugging */
 
 char* xstrdup (const char* S);