[PellesC] fix _lseeki64() macro

This commit is contained in:
Gisle Vanem 2021-07-15 11:52:06 +02:00 committed by Gisle Vanem
parent c6fd7cbf10
commit bc035f5c9d
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ int tool_seek_cb(void *userdata, curl_off_t offset, int whence)
/* 64-bit lseek-like function unavailable */
# define _lseeki64(hnd,ofs,whence) _lseek(hnd,ofs,whence)
# else
# undef _lseeki64
# define _lseeki64(hnd,ofs,whence) _lseek64(hnd,ofs,whence)
# endif
#endif