1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

calloc is now written in assembler and a fastcall function

git-svn-id: svn://svn.cc65.org/cc65/trunk@1120 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-11-15 21:53:31 +00:00
parent 38f716079a
commit 834eff684f

View File

@ -50,7 +50,7 @@
/* Memory management */
void* __fastcall__ malloc (size_t size);
void* calloc (size_t count, size_t size);
void* __fastcall__ calloc (size_t count, size_t size);
void* realloc (void* block, size_t size);
void __fastcall__ free (void* block);
#ifndef __STRICT_ANSI__