]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fsetpos.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / stdio / fsetpos.c
index ae100394be6974721496eae8ab3cc649f9a9fd1c..b77104728304ac347c9c1afd8465d1d0a74fefb8 100644 (file)
@@ -6,3 +6,10 @@
 // ----------------------------------------------------------------------------
 
 int fsetpos( FILE * stream, const fpos_t * pos ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    fseek(stream, *pos, SEEK_SET);
+    return (0);
+}
+*/