ack/lang/cem/libcc.ansi/stdio/rewind.c

15 lines
218 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* rewind.c - set the file position indicator of a stream to the start
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-30 13:34:25 +00:00
#include <stdio.h>
#include "loc_incl.h"
void
rewind(FILE *stream)
{
(void) fseek(stream, 0L, SEEK_SET);
clearerr(stream);
}