summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/ftell.c
blob: 1729d743b2847a348ed51f303616af4891b9fb9e (plain)
1
2
3
4
5
#include <stdio.h>

long ftell(FILE *stream) {
  return fseek(stream, 0, SEEK_CUR);
}