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