]> git.sur5r.net Git - cc65/commitdiff
Make setlocale __fastcall__
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 2 Oct 2003 21:44:56 +0000 (21:44 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 2 Oct 2003 21:44:56 +0000 (21:44 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2470 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/locale.h
libsrc/common/locale.c

index 8776abf666a2290ea95f4b42c1801217d497d082..d21488c304b4768802857d04ffeaeff0136ae500 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                locale.h                                  */
+/*                                locale.h                                  */
 /*                                                                           */
-/*                         Localization <locale.h>                          */
+/*                         Localization <locale.h>                          */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 1998-2003 Ullrich von Bassewitz                                       */
+/*               Römerstrasse 52                                             */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -76,7 +76,7 @@ struct lconv {
 
 /* Function prototypes */
 struct lconv* localeconv (void);
-char* setlocale (int category, const char* locale);
+char* __fastcall__ setlocale (int category, const char* locale);
 
 
 
index efb055cb50f3bea2bad442b710ba430858b0f14f..f03a68e6fcd3427df391392ed6c5d170c6d8204c 100644 (file)
@@ -56,7 +56,7 @@ struct lconv* localeconv (void)
 
 
 
-char* setlocale (int, const char* locale)
+char* __fastcall__ setlocale (int, const char* locale)
 {
     if (locale == 0 || (locale [0] == 'C' && locale [1] == '\0') || locale [0] == '\0') {
        /* No change, or value already set, our locale is the "C" locale */