]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/io.h (lseek64) : Add prototype.
authorDanny Smith <dannysmith@users.sourceforge.net>
Thu, 14 Jun 2007 03:05:08 +0000 (03:05 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Thu, 14 Jun 2007 03:05:08 +0000 (03:05 +0000)
winsup/mingw/ChangeLog
winsup/mingw/include/io.h

index 53729c94cd4ec70addfeaabdc86bd2fd1ef881cd..cfbfaa5e1bf670ea62b5b7ea7b538c5f124890f8 100644 (file)
@@ -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>
 
        * include/string.h (strcasecmp): Add prototype.
index d980726b11e5d5b5470952789a7fb0b674814a95..88517cb037e9b541ee1313885a6e6c055e1f488a 100644 (file)
@@ -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);
This page took 0.034672 seconds and 5 git commands to generate.