mirror of
https://github.com/cc65/cc65.git
synced 2025-01-08 20:31:31 +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:
parent
1627af5de8
commit
7dd7b024a0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user