7eaa235fd1
plat. It's completely untested, but it builds and makes e.out executables.
12 lines
103 B
C
12 lines
103 B
C
/* $Id$ */
|
|
/*
|
|
* return offset in file.
|
|
*/
|
|
|
|
long lseek();
|
|
|
|
long tell(f)
|
|
{
|
|
return(lseek(f, 0L, 1));
|
|
}
|