1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

_hadd is now a fastcall function

git-svn-id: svn://svn.cc65.org/cc65/trunk@183 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-21 21:36:24 +00:00
parent 8db1fa3aa0
commit 80243ae63b

View File

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