mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 17:59:28 +08:00
9 lines
126 B
C
9 lines
126 B
C
|
#include <io.h>
|
||
|
|
||
|
off64_t lseek64
|
||
|
(int fd, off64_t offset, int whence)
|
||
|
{
|
||
|
return _lseeki64(fd, (__int64) offset, whence);
|
||
|
}
|
||
|
|