Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / fsetpos.c
1 /*
2  * fsetpos.c - set the position in the file
3  */
4 /* $Id: fsetpos.c,v 1.2 1994/06/24 11:50:06 ceriel Exp $ */
5
6 #include        <stdio.h>
7
8 int
9 fsetpos(FILE *stream, fpos_t *pos)
10 {
11         return fseek(stream, *pos, SEEK_SET);
12 }