]> git.sur5r.net Git - cc65/commitdiff
Several type qualifier fixes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 14 Aug 2000 22:16:40 +0000 (22:16 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 14 Aug 2000 22:16:40 +0000 (22:16 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@283 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/_printf.h
libsrc/common/locale.c
libsrc/common/vcprintf.c
libsrc/common/vfprintf.c
libsrc/common/vsprintf.c

index 6ce43439a0cbb1c3e7492deeb97c51cdffcae091..aa5802f03d2c3bbf529db9e61092a4aa9907352c 100644 (file)
@@ -16,7 +16,7 @@
 struct outdesc;
 
 /* Type of the function that is called to output data */
-typedef void (*outfunc) (struct outdesc* desc, char* buf, unsigned count);
+typedef void (*outfunc) (struct outdesc* desc, const char* buf, unsigned count);
 
 
 
index 5c084a2d05b2f9dd63d519d322d80c4ab7aef84c..efb055cb50f3bea2bad442b710ba430858b0f14f 100644 (file)
@@ -18,9 +18,9 @@
 
 
 /* For memory efficiency use a separate empty string */
-static const char EmptyString [] = "";
+static char EmptyString [] = "";
 
-static const struct lconv lc = {
+static struct lconv lc = {
     EmptyString,       /* currency_symbol */
     ".",               /* decimal_point */
     EmptyString,       /* grouping */
index 4b54cdbdcc569c7131fce3abed6728f8f9d9ea18..64d0e5c96186368ffe6e0417092eb9930950cd2c 100644 (file)
@@ -12,7 +12,7 @@
 
 
 
-static void out (struct outdesc* d, char* buf, unsigned count)
+static void out (struct outdesc* d, const char* buf, unsigned count)
 /* Routine used for writing */
 {
     /* Fast screen output */
index f33c9c47ec74a7719c493f941e10ec150d2ea862..17596b5d26a79461947f59d91f44d1e2a897155d 100644 (file)
@@ -12,7 +12,7 @@
 
 
 
-static void out (struct outdesc* d, char* buf, unsigned count)
+static void out (struct outdesc* d, const char* buf, unsigned count)
 /* Routine used for writing */
 {
     /* Write to the file */
@@ -42,4 +42,4 @@ int vfprintf (FILE* f, const char* format, va_list ap)
 
 
 
-                            
+
index 9b55da9c024fe87f2cbac129abba80bcca2a812f..6c892d94b17d0b79a4688e76f7cb826a7d552337 100644 (file)
@@ -12,7 +12,7 @@
 
 
 
-static void out (struct outdesc* d, char* buf, unsigned count)
+static void out (struct outdesc* d, const char* buf, unsigned count)
 /* Routine used for writing */
 {
     /* String - be shure to check the size */