3935153ea2
* Noteworthy changes in release 1.4.17 (2013-09-22) [stable] ** Fix compilation with newer glibc headers. ** Fix a failure with diverting large amounts of text on mingw (does not affect platforms that can rename an open file). ** A number of portability improvements inherited from gnulib.
13 lines
524 B
Text
13 lines
524 B
Text
$NetBSD: patch-ab,v 1.13 2013/10/04 21:02:11 wiz Exp $
|
|
|
|
--- lib/fseeko.c.orig 2013-09-22 06:15:55.000000000 +0000
|
|
+++ lib/fseeko.c
|
|
@@ -125,7 +125,7 @@ fseeko (FILE *fp, off_t offset, int when
|
|
fp->_flags &= ~_IO_EOF_SEEN;
|
|
fp->_offset = pos;
|
|
#elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */
|
|
-# if defined __CYGWIN__
|
|
+# if defined(__CYGWIN__) || defined(__NetBSD__)
|
|
/* fp_->_offset is typed as an integer. */
|
|
fp_->_offset = pos;
|
|
# else
|