forget difference between big and small commands - obsolete with vm.
[minix.git] / lib / stdio / rewind.c
blob5b835881b0fdaf950da025eef1826941a6356e0b
1 /*
2 * rewind.c - set the file position indicator of a stream to the start
3 */
4 /* $Header$ */
6 #include <stdio.h>
7 #include "loc_incl.h"
9 void
10 rewind(FILE *stream)
12 (void) fseek(stream, 0L, SEEK_SET);
13 clearerr(stream);