]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fsetpos.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / fsetpos.c
index a04185a4274242754cbbf735fdd5cc60dc3b6a97..6194a109c6fee6e676a3edab4dc3df4ded08f14a 100644 (file)
@@ -5,11 +5,20 @@
  */
 
 
+
 #include <stdio.h>
 
 
-int fsetpos(FILE* f, const fpos_t *pos)
+
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
+
+
+int __fastcall__ fsetpos (FILE* f, const fpos_t *pos)
 {
     return fseek (f, (fpos_t)*pos, SEEK_SET);
 }
 
+