]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/rewind.c
Fixed the return code of fgetpos and ftell.
[cc65] / libsrc / common / rewind.c
index a4935b4a012c3317649a09782d4487c0d208162e..b6055ece534dc592ff51e36fea2e5f91398e5e79 100644 (file)
@@ -5,12 +5,21 @@
  */
 
 
+
 #include <stdio.h>
 
 
-void rewind(FILE* f)
+
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
+
+
+void __fastcall__ rewind (FILE* f)
 {
     fseek(f, 0L, SEEK_SET);
     clearerr(f);
 }
 
+