]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/freopen.c
Added mouse module from C64
[cc65] / libsrc / common / freopen.c
index bbad5b326769d84358bec5e785e964b3b718d910..da86b2685886e1e6469e5958204144ebfb783bfb 100644 (file)
@@ -13,7 +13,7 @@
 
 
 
-FILE* freopen (char* name, char* mode, FILE* f)
+FILE* freopen (const char* name, const char* mode, FILE* f)
 {
     /* Check if the file is open, if so, close it */
     if ((f->f_flags & _FOPEN) == 0) {