summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/fsetpos.c
blob: c39c5452291669fe07d9e1c0bd3c7f71415e222d (plain)
1
2
3
4
5
6
7
#include <stdio.h>

// FIXME: Error handling
int fsetpos(FILE *stream, const fpos_t *pos) {
  stream->offset_in_file = (long)(*pos);
  return 0;
}