]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fputs.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / fputs.c
index f4dcbbf9d60df8a82d9b6f70890f6440fcedb1ef..3b07d8e4d848b5e058deb1899677d3f1aa271b1d 100644 (file)
@@ -8,16 +8,16 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <fcntl.h>
+#include <unistd.h>
 #include "_file.h"
 
 
 
-int fputs (char* s, FILE* f)
+int __fastcall__ 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) {
-       return -1;
+       return EOF;
     }
 
     /* Write the string */