Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
stdio
/
lseek64.c
blob: 5eab6d4a87e49cdadeaebfe5de8a8342ae94989e [
file
] [
log
] [
blame
]
#include
<io.h>
_off64_t
lseek64
(
int
fd
,
_off64_t
offset
,
int
whence
)
{
return
_lseeki64
(
fd
,
(
_off64_t
)
offset
,
whence
);
}