plan9front/sys/src/libstdio/fsetpos.c

8 lines
128 B
C

/*
* pANS stdio -- fsetpos
*/
#include "iolib.h"
int fsetpos(FILE *f, const fpos_t *pos){
return fseek(f, *pos, SEEK_SET);
}