shithub: riscv

ref: 0a3eb7d6b1ef7e9ef569dcc8e73c98a8446b52fc
dir: /sys/src/libstdio/fsetpos.c/

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