1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

free() is now an assembler function

git-svn-id: svn://svn.cc65.org/cc65/trunk@159 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-16 22:10:47 +00:00
parent bc320797c6
commit 27be2dcb2b

View File

@ -26,7 +26,7 @@
void* malloc (size_t size);
void* calloc (size_t count, size_t size);
void* realloc (void* block, size_t size);
void free (void* block);
void __fastcall__ free (void* block);
#ifndef __STRICT_ANSI__
void _hadd (void* mem, size_t size); /* Non-standard */
#endif