xref: /original-bsd/lib/libcompat/4.1/tell.c (revision 6c57d260)
1 /* @(#)tell.c	4.1 (Berkeley) 12/21/80 */
2 /*
3  * return offset in file.
4  */
5 
6 long	lseek();
7 
8 long tell(f)
9 {
10 	return(lseek(f, 0L, 1));
11 }
12