V7/usr/src/libc/gen/tell.c

Find at most related files.
including files from this version of Unix.

/*
 * return offset in file.
 */

long	lseek();

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