allwinner_a64/android/external/syslinux/com32/lib/sys/ftell.c
2018-08-08 16:14:42 +08:00

16 lines
244 B
C

/*
* sys/ftell.c
*
* We can't seek, but we can at least tell...
*/
#include <stdio.h>
#include "sys/file.h"
long ftell(FILE * stream)
{
int fd = fileno(stream);
struct file_info *fp = &__file_info[fd];
return fp->i.offset;
}