Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2007-06-14 07:05:08 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2007-06-14 07:05:08 +0400
commitadb97e62423e81fdb26a1d8dc94ea34d579bbe07 (patch)
treedc0f2c4112d7e957a0d2b281718a13ccebaf607a /winsup/mingw/include
parent9958ad72172923f948ae35c84260d6f79341b7cd (diff)
* include/io.h (lseek64) : Add prototype.
Diffstat (limited to 'winsup/mingw/include')
-rw-r--r--winsup/mingw/include/io.h1
1 files changed, 1 insertions, 0 deletions
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);