ack/lang/cem/libcc/mon/tell.c
1985-01-01 22:27:02 +00:00

11 lines
92 B
C

/*
* return offset in file.
*/
long lseek();
long tell(f)
{
return(lseek(f, 0L, 1));
}