ack/lang/cem/libcc/mon/tell.c
1994-06-24 14:02:31 +00:00

12 lines
103 B
C

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