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

long ftell(FILE *stream) {
    return stream->offset_in_file;
}