mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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:
parent
38f716079a
commit
834eff684f
@ -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__
|
||||
|
Loading…
Reference in New Issue
Block a user