* include/io.h (lseek64) : Add prototype.
This commit is contained in:
parent
9958ad7217
commit
adb97e6242
|
@ -1,3 +1,7 @@
|
||||||
|
2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>'
|
||||||
|
|
||||||
|
* include/io.h (lseek64) : Add prototype.
|
||||||
|
|
||||||
2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>
|
2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/string.h (strcasecmp): Add prototype.
|
* include/string.h (strcasecmp): Add prototype.
|
||||||
|
|
|
@ -154,6 +154,7 @@ _CRTIMP intptr_t __cdecl _findnext64(intptr_t, struct __finddata64_t*);
|
||||||
#endif /* __MSVCRT_VERSION__ >= 0x0601 */
|
#endif /* __MSVCRT_VERSION__ >= 0x0601 */
|
||||||
|
|
||||||
#ifndef __NO_MINGW_LFS
|
#ifndef __NO_MINGW_LFS
|
||||||
|
__CRT_INLINE off64_t lseek64 (int, off64_t, int);
|
||||||
__CRT_INLINE off64_t lseek64 (int fd, off64_t offset, int whence)
|
__CRT_INLINE off64_t lseek64 (int fd, off64_t offset, int whence)
|
||||||
{
|
{
|
||||||
return _lseeki64(fd, (__int64) offset, whence);
|
return _lseeki64(fd, (__int64) offset, whence);
|
||||||
|
|
Loading…
Reference in New Issue