Files

9 lines
127 B
C
Raw Permalink Normal View History

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