The MinGW.org Windows System Libraries
Revision | 928ddb53a9623fc38de3997a3acce4a8730f4dc6 (tree) |
---|---|
Time | 2013-09-19 10:57:49 |
Author | Earnie Boyd <earnie@user...> |
Commiter | Earnie Boyd |
[#2024] Use _off64_t for lseek64 instead of off64_t.
@@ -6,6 +6,8 @@ RELEASE 4.1: | ||
6 | 6 | * include/winldap.h (ldap_start_tls_s[AW]()): Incorrect signature |
7 | 7 | [#2027]. |
8 | 8 | (ldap_stop_tls_s()): Use PLDAP instead of LDAP * per MSDN documentation. |
9 | + * include/io.h (lseek64): Use _off64_t instead of off64_t due to | |
10 | + __STRICT_ANSI__ [#2024]. | |
9 | 11 | |
10 | 12 | 2013-04-10 Earnie Boyd <earnie@users.sourceforge.net> |
11 | 13 | * include/windows.h (NOWH): Correct typo in macro name. |
@@ -298,8 +298,8 @@ __CRT_MAYBE_INLINE __cdecl __MINGW_NOTHROW intptr_t _findnext64i32(intptr_t _fp, | ||
298 | 298 | } |
299 | 299 | |
300 | 300 | #ifndef __NO_MINGW_LFS |
301 | -__CRT_INLINE off64_t lseek64 (int, off64_t, int); | |
302 | -__CRT_INLINE off64_t lseek64 (int fd, off64_t offset, int whence) { | |
301 | +__CRT_INLINE _off64_t lseek64 (int, _off64_t, int); | |
302 | +__CRT_INLINE _off64_t lseek64 (int fd, _off64_t offset, int whence) { | |
303 | 303 | return _lseeki64(fd, (__int64) offset, whence); |
304 | 304 | } |
305 | 305 | #endif |