]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/rewind.c
Minimize the amount of internal definitions which get exposed via the user-visible...
[pdclib.old] / functions / stdio / rewind.c
index 0a19155b5820428acd62c40996d8aa8b8ceaf35c..53ab51da9509b64a2fcb1567fb05a8b45de5eb45 100644 (file)
@@ -9,14 +9,15 @@
 #include <stdio.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
 
-void rewind_unlocked( struct _PDCLIB_file_t * stream )
+void rewind_unlocked( FILE * stream )
 {
     stream->status &= ~ _PDCLIB_ERRORFLAG;
     fseek_unlocked( stream, 0L, SEEK_SET );
 }
 
-void rewind( struct _PDCLIB_file_t * stream )
+void rewind( FILE * stream )
 {
     flockfile(stream);
     rewind_unlocked(stream);