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