]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/rewind.c
Merged PDPCLIB and Therx code.
[pdclib.old] / functions / stdio / rewind.c
index 0dd56ae181a16742b174f4f31871e8825f1a09e8..fdcb4301456d442d60dfb26d1d16835472f06689 100644 (file)
@@ -6,3 +6,10 @@
 // ----------------------------------------------------------------------------
 
 void rewind( FILE * stream ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    fseek(stream, 0L, SEEK_SET);
+    return;
+}
+*/