# HG changeset patch # User Bruno Haible # Date 1311640207 -7200 # Node ID 93283e9d4b8c996af75b8c815e88ee26f89a82f2 # Parent 51231c56c0a104103faa3ed983179c98ec859a9a fseek, ftell: Fix doc. * doc/posix-functions/fseek.texi: Reword statement about AC_SYS_LARGEFILE. * doc/posix-functions/ftell.texi: Likewise. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-07-25 Bruno Haible + + fseek, ftell: Fix doc. + * doc/posix-functions/fseek.texi: Reword statement about + AC_SYS_LARGEFILE. + * doc/posix-functions/ftell.texi: Likewise. + 2011-07-25 Paul Eggert Bruno Haible diff --git a/doc/posix-functions/fseek.texi b/doc/posix-functions/fseek.texi --- a/doc/posix-functions/fseek.texi +++ b/doc/posix-functions/fseek.texi @@ -19,6 +19,6 @@ upon failure. @item On platforms where @code{long} is a 32-bit type, @code{fseek} does not work -correctly with files larger than 2 GB. The fix is to use @code{fseeko} -instead and to invoke the @code{AC_SYS_LARGEFILE} macro. +correctly with files larger than 2 GB, even when the @code{AC_SYS_LARGEFILE} +macro is used. The fix is to use @code{fseeko} instead. @end itemize diff --git a/doc/posix-functions/ftell.texi b/doc/posix-functions/ftell.texi --- a/doc/posix-functions/ftell.texi +++ b/doc/posix-functions/ftell.texi @@ -28,6 +28,6 @@ contains Unix line terminators (LF), on some platforms: mingw. @item On platforms where @code{long} is a 32-bit type, @code{ftell} does not work -correctly with files larger than 2 GB. The fix is to use @code{ftello} -instead and to invoke the @code{AC_SYS_LARGEFILE} macro. +correctly with files larger than 2 GB, even when the @code{AC_SYS_LARGEFILE} +macro is used. The fix is to use @code{ftello} instead. @end itemize