]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fputs.c
Added mouse module from C64
[cc65] / libsrc / common / fputs.c
index f4dcbbf9d60df8a82d9b6f70890f6440fcedb1ef..2fd42efae54a4cff5a203a0279e2f8737fbb7094 100644 (file)
@@ -13,7 +13,7 @@
 
 
 
-int fputs (char* s, FILE* f)
+int fputs (const char* s, FILE* f)
 {
     /* Check if the file is open or if there is an error condition */
     if ((f->f_flags & _FOPEN) == 0 || (f->f_flags & (_FERROR | _FEOF)) != 0) {