mirror of
https://github.com/fluencelabs/musl
synced 2025-05-13 15:51:30 +00:00
7 lines
69 B
C
7 lines
69 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void rewind(FILE *f)
|
||
|
{
|
||
|
fseek(f, 0, SEEK_SET);
|
||
|
}
|