]> git.sur5r.net Git - cc65/commitdiff
strdup is now a fastcall function
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 22 Jul 2000 11:11:23 +0000 (11:11 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 22 Jul 2000 11:11:23 +0000 (11:11 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@187 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/string.h

index 4acb2f8ea10151d02f1a54455111aea8d8681d8f..586421daddbbe887466145d854a3c78d0d60277f 100644 (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);