diff options
Diffstat (limited to 'libio/stdio/rewind.c')
-rw-r--r-- | libio/stdio/rewind.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libio/stdio/rewind.c b/libio/stdio/rewind.c new file mode 100644 index 00000000000..01fe20a75dd --- /dev/null +++ b/libio/stdio/rewind.c @@ -0,0 +1,10 @@ +#include "stdio.h" +#include "libioP.h" + +void +rewind(fp) + _IO_FILE* fp; +{ + CHECK_FILE(fp, ); + _IO_rewind(fp); +} |