* lib/fseeko.c (feeko): NetBSD 6 changed the definition of _offset
from 'fpos_t struct' to __off_t, which is a typedef of __int64_t.
+2015-04-14 HIRAMATSU Yoshifumi <hiramatu@boreas.dti.ne.jp>
+
+ fseeko: fix build failure on NetBSD >= 6 (trivial)
+ * lib/fseeko.c (feeko): NetBSD 6 changed the definition of _offset
+ from 'fpos_t struct' to __off_t, which is a typedef of __int64_t.
+
2015-04-09 Paul Eggert <eggert@cs.ucla.edu>
gitlog-to-changelog: port to MS-Windows
fp->_offset = pos;
#elif defined __sferror || defined __DragonFly__ || defined __ANDROID__
/* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Android */
-# if defined __CYGWIN__
+# if defined __CYGWIN__ || (defined __NetBSD__ && __NetBSD_Version__ >= 600000000)
/* fp_->_offset is typed as an integer. */
fp_->_offset = pos;
# else