Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8687 turbocat 1
#include 
2
 
3
int fsetpos(FILE *stream, const fpos_t *pos) {
4
	stream->position = *pos;
5
	stream->eof = 0;
6
	return 0;
7
}