1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

strdup is now a fastcall function

git-svn-id: svn://svn.cc65.org/cc65/trunk@187 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-22 11:11:23 +00:00
parent 1627af5de8
commit 7dd7b024a0

View File

@ -40,7 +40,7 @@ void* __fastcall__ memset (void* s, int c, size_t count);
/* Non standard: */
#ifndef __STRICT_ANSI__
char* strdup (const char* s); /* SYSV/BSD */
char* __fastcall__ strdup (const char* s); /* SYSV/BSD */
int __fastcall__ stricmp (const char* s1, const char* s2); /* DOS/Windows */
int __fastcall__ strcasecmp (const char* s1, const char* s2); /* Same for Unix */
char* __fastcall__ strlwr (char* s);