BSD 3 development
[unix-history] / usr / src / libc / gen / tell.c
/*
* return offset in file.
*/
long lseek();
long tell(f)
{
return(lseek(f, 0L, 1));
}