ack/plat/em/libsys/tell.c
2022-08-01 22:08:23 +02:00

12 lines
139 B
C

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