source:
trunk/sys/dietlibc/rewind.c
@
90
Last change on this file since 90 was 1, checked in by , 8 years ago | |
---|---|
File size: 106 bytes |
Line | |
---|---|
1 | #include "dietstdio.h" |
2 | #include <unistd.h> |
3 | |
4 | void rewind( FILE *stream) { |
5 | fseek(stream, 0L, SEEK_SET); |
6 | } |
Note: See TracBrowser
for help on using the repository browser.