]> git.sur5r.net Git - cc65/commitdiff
Remove #pragmas to switch to the RODATA segment since the compiler will do
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 3 Aug 2000 10:45:31 +0000 (10:45 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 3 Aug 2000 10:45:31 +0000 (10:45 +0000)
this now without help.

git-svn-id: svn://svn.cc65.org/cc65/trunk@263 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/_hextab.c
libsrc/common/errormsg.c
libsrc/common/locale.c

index fc82f17d7752d4024263cf3790138890ed763ac1..d4f24b2ea71ca3ece196d2f0c7b7358c4a22f626 100644 (file)
@@ -7,9 +7,6 @@
 
 
 
-/* Data in this module is read-only, put it into the RODATA segment */
-#pragma dataseg ("RODATA")
-
 const unsigned char _hextab [16] = {
     '0', '1', '2', '3', '4', '5', '6', '7',
     '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
index 4c15ac4cd7b3b3ceb9fcdbe7d83f0a3d7f1f9d00..d52daeaae627cd351b04913e0b0678dbd3f37245 100644 (file)
@@ -9,10 +9,7 @@
 
 
 
-/* Place the following data into the readonly data segment */
-#pragma dataseg ("RODATA")
-
-const char* _sys_errlist[] = {
+const char* const _sys_errlist[] = {
     "Unknown error",                /*  0 */
     "No such file or directory",    /*  1 */
     "Out of memory",                /*  2 */
index ad5fe1c23acb025d99a8d2f097ad3f04ea0eaab1..5c084a2d05b2f9dd63d519d322d80c4ab7aef84c 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 struct lconv lc = {
+static const struct lconv lc = {
     EmptyString,       /* currency_symbol */
     ".",               /* decimal_point */
     EmptyString,       /* grouping */
@@ -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)
 
 
 
-                 
+