2.9BSD/usr/src/lib/c/gen/tell.c

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

/*	@(#)tell.c	2.1	SCCS id keyword	*/
/*
 * return offset in file.
 */

long	lseek();

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