V7/usr/src/libc/gen/tell.c
Find at most
5
10
20
50
100
500
related files.
including files from this version of Unix.
/* * return offset in file. */ long lseek(); long tell(f) { return(lseek(f, 0L, 1)); }