ack/plat/em/libsys/tell.c

12 lines
139 B
C
Raw Permalink Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1985-01-01 22:27:02 +00:00
/*
* return offset in file.
*/
2022-08-01 20:08:23 +00:00
long lseek(int fd, int offset, int whence);
1985-01-01 22:27:02 +00:00
2022-08-01 20:08:23 +00:00
long tell(int fd)
1985-01-01 22:27:02 +00:00
{
2022-08-01 20:08:23 +00:00
return(lseek(fd, 0L, 1));
1985-01-01 22:27:02 +00:00
}