manual page distributed with 4.1BSD
[unix-history] / usr / src / lib / libcompat / 4.1 / tell.c
CommitLineData
a1309fe3
BJ
1/* @(#)tell.c 4.1 (Berkeley) %G% */
2/*
3 * return offset in file.
4 */
5
6long lseek();
7
8long tell(f)
9{
10 return(lseek(f, 0L, 1));
11}