]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fputc.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / fputc.c
index 6d5f37e201d5e1d3c1dea3c9e45683a1e8f4c06f..73d4860a7c09720098b5a7669dd6f4bbf7e4e3d6 100644 (file)
@@ -13,7 +13,7 @@
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -22,15 +22,15 @@ int __fastcall__ fputc (int c, register 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) {
-       goto ReturnEOF;
+        goto ReturnEOF;
     }
 
     /* Write the byte */
     if (write (f->f_fd, &c, 1) != 1) {
-       /* Error */
-       f->f_flags |= _FERROR;
+        /* Error */
+        f->f_flags |= _FERROR;
 ReturnEOF:
-       return EOF;
+        return EOF;
     }
 
     /* Return the byte written */