9 lines
154 B
C
9 lines
154 B
C
|
|
#include "file.h"
|
||
|
|
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
int fseek(struct __opaque_file *stream, long offset, int origin)
|
||
|
|
{
|
||
|
|
return lseek(stream->f_fd, offset, origin);
|
||
|
|
}
|