aboutsummaryrefslogtreecommitdiffstats
path: root/io/rewind.c
blob: 9e0d2ee9d6a076ba54cabdcd72addc3dc1f3316c (plain) (blame)
1
2
3
4
#define NO_OPAQUE_TYPE
#include "io.h"

void rewind(FILE *stream) { fseek(stream, 0L, SEEK_SET); }