summaryrefslogtreecommitdiff
path: root/src/stdio/rewind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/rewind.c')
-rw-r--r--src/stdio/rewind.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/rewind.c b/src/stdio/rewind.c
index 73be1f57..94694edb 100644
--- a/src/stdio/rewind.c
+++ b/src/stdio/rewind.c
@@ -1,6 +1,7 @@
#include <stdio.h>
/** reset file position indicator **/
+
void rewind(FILE *stream)
{
fseek(stream, 0L, SEEK_SET);
@@ -11,6 +12,7 @@ void rewind(FILE *stream)
sets the file position indicator of ARGUMENT(stream) to the
beginning of the file. The error indicator will be cleared.
***/
+
/*
STDC(1)
*/