mirror of git://git.musl-libc.org/musl
7 lines
69 B
C
7 lines
69 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void rewind(FILE *f)
|
||
|
{
|
||
|
fseek(f, 0, SEEK_SET);
|
||
|
}
|