]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/fsetpos.c
disk/fdisk: learn about EFI system partition (type 0xEF), honor protective mbr (type...
[plan9front.git] / sys / src / libstdio / fsetpos.c
1 /*
2  * pANS stdio -- fsetpos
3  */
4 #include "iolib.h"
5 int fsetpos(FILE *f, const fpos_t *pos){
6         return fseek(f, *pos, SEEK_SET);
7 }