V7M/src/libc/gen/tell.c

Compare this file to the similar file:
Show the results in this format:

/*
 * return offset in file.
 */

long	lseek();

long tell(f)
{
	return(lseek(f, 0L, 1));
}