libc/winsup/mingw/mingwex/stdio/lseek64.c

9 lines
126 B
C
Executable File

#include <io.h>
off64_t lseek64
(int fd, off64_t offset, int whence)
{
return _lseeki64(fd, (__int64) offset, whence);
}