ack/plat/em/libsys/tell.c
David Given 7eaa235fd1 Bodge the ancient em monitor library into building as a libsys for the em22
plat. It's completely untested, but it builds and makes e.out executables.
2018-06-13 21:44:25 +09:00

12 lines
103 B
C

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