isblank() implementation.
[minix.git] / lib / libc / stdio / fsetpos.c
blobef67ad05f83aecc0f066d635ce1c25613229a68b
1 /*
2 * fsetpos.c - set the position in the file
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 int
9 fsetpos(FILE *stream, fpos_t *pos)
11 return fseek(stream, *pos, SEEK_SET);