source: trunk/sys/dietlibc/rewind.c @ 365

Last change on this file since 365 was 1, checked in by alain, 7 years ago

First import

File size: 106 bytes
Line 
1#include "dietstdio.h"
2#include <unistd.h>
3
4void rewind( FILE *stream) {
5  fseek(stream, 0L, SEEK_SET);
6}
Note: See TracBrowser for help on using the repository browser.