9 lines
127 B
C
9 lines
127 B
C
|
|
#include "file.h"
|
||
|
|
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
long ftell(struct __opaque_file *stream)
|
||
|
|
{
|
||
|
|
return lseek(stream->f_fd, 0, SEEK_CUR);
|
||
|
|
}
|