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

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