Bell 32V development
[unix-history] / usr / src / libc / gen / tell.c
CommitLineData
d4c7d14c
TL
1/*
2 * return offset in file.
3 */
4
5long lseek();
6
7long tell(f)
8{
9 return(lseek(f, 0L, 1));
10}