From adb97e62423e81fdb26a1d8dc94ea34d579bbe07 Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Thu, 14 Jun 2007 03:05:08 +0000 Subject: [PATCH] * include/io.h (lseek64) : Add prototype. --- winsup/mingw/ChangeLog | 4 ++++ winsup/mingw/include/io.h | 1 + 2 files changed, 5 insertions(+) diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 53729c94c..cfbfaa5e1 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2007-06-14 Danny Smith ' + + * include/io.h (lseek64) : Add prototype. + 2007-06-14 Danny Smith * include/string.h (strcasecmp): Add prototype. diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index d980726b1..88517cb03 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -154,6 +154,7 @@ _CRTIMP intptr_t __cdecl _findnext64(intptr_t, struct __finddata64_t*); #endif /* __MSVCRT_VERSION__ >= 0x0601 */ #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) { return _lseeki64(fd, (__int64) offset, whence);