]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/locale.c
Added mouse module from C64
[cc65] / libsrc / common / locale.c
index ad5fe1c23acb025d99a8d2f097ad3f04ea0eaab1..efb055cb50f3bea2bad442b710ba430858b0f14f 100644 (file)
 
 
 
-/* Data in this module is read-only, put it into the RODATA segment */
-#pragma dataseg ("RODATA");
-
 /* For memory efficiency use a separate empty string */
-static const char EmptyString [] = "";
+static char EmptyString [] = "";
 
 static struct lconv lc = {
     EmptyString,       /* currency_symbol */
@@ -44,9 +41,6 @@ static struct lconv lc = {
     CHAR_MAX,          /* p_sign_posn */
 };
 
-/* Restore the old data segment name */
-#pragma dataseg ("DATA");
-
 
 
 /*****************************************************************************/
@@ -75,4 +69,4 @@ char* setlocale (int, const char* locale)
 
 
 
-                 
+