move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stdio / fsetpos.c
blob77ab8d820603401a71804a85cc4d005eaa22ad60
1 #include "stdio_impl.h"
3 int fsetpos(FILE *f, const fpos_t *pos)
5 return __fseeko(f, *(const long long *)pos, SEEK_SET);
8 weak_alias(fsetpos, fsetpos64);