• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


Commit MetaInfo

Revision928ddb53a9623fc38de3997a3acce4a8730f4dc6 (tree)
Time2013-09-19 10:57:49
AuthorEarnie Boyd <earnie@user...>
CommiterEarnie Boyd

Log Message

[#2024] Use _off64_t for lseek64 instead of off64_t.

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@ RELEASE 4.1:
66 * include/winldap.h (ldap_start_tls_s[AW]()): Incorrect signature
77 [#2027].
88 (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].
911
1012 2013-04-10 Earnie Boyd <earnie@users.sourceforge.net>
1113 * include/windows.h (NOWH): Correct typo in macro name.
--- a/include/io.h
+++ b/include/io.h
@@ -298,8 +298,8 @@ __CRT_MAYBE_INLINE __cdecl __MINGW_NOTHROW intptr_t _findnext64i32(intptr_t _fp,
298298 }
299299
300300 #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) {
303303 return _lseeki64(fd, (__int64) offset, whence);
304304 }
305305 #endif