ref: 39c3fd117ab4988c041800490b23c2aedb1858d3 dir: /sys/src/ape/lib/ap/stdio/fsetpos.c/
/* * pANS stdio -- fsetpos */ #include "iolib.h" int fsetpos(FILE *f, const fpos_t *pos){ return fseek(f, *pos, SEEK_SET); }