xref: /minix3/lib/libc/stdio/fsetpos.c (revision b706112487045bc1efd01e3d4d53d9a6b04a0bca)
1 /*
2  * fsetpos.c - set the position in the file
3  */
4 /* $Header$ */
5 
6 #include	<stdio.h>
7 
8 int
9 fsetpos(FILE *stream, fpos_t *pos)
10 {
11 	return fseek(stream, *pos, SEEK_SET);
12 }
13