]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fputc.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / fputc.c
index fdae61768d78b01167d386c46e89a5a6b5de8cb7..ef676a864186e6c150882d3af510054b35116c09 100644 (file)
@@ -7,12 +7,18 @@
 
 
 #include <stdio.h>
-#include <fcntl.h>
+#include <unistd.h>
 #include "_file.h"
 
 
 
-int fputc (int c, FILE* f)
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
+
+
+int __fastcall__ fputc (int c, 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) {