Correct last change.
authorBruno Haible <bruno@clisp.org>
Mon, 28 May 2007 14:08:37 +0000 (14:08 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 28 May 2007 14:08:37 +0000 (14:08 +0000)
doc/functions/fseek.texi
doc/functions/ftell.texi

index b66055db614d82fb03c7dc9739f9b6bbd81088de..05ebab0e19c3d710a6606d1e196f77a56360d604 100644 (file)
@@ -18,6 +18,7 @@ Portability problems not fixed by Gnulib:
 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
 upon failure.
 @item
-On platforms where @code{off_t} is a 32-bit type, @code{fseek} does not work
-correctly with files larger than 2 GB.  The fix is to use fseeko instead.
+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.
 @end itemize
index fbf3047962d203f802ba43e3a4c279ef4cdfbed6..a657ad473502672780f00afaeb2cdb7d4bb5acf6 100644 (file)
@@ -19,6 +19,7 @@ Portability problems not fixed by Gnulib:
 on input streams that are opened in @code{O_TEXT} mode and whose contents
 contains Unix line terminators (LF), on some platforms: mingw.
 @item
-On platforms where @code{off_t} is a 32-bit type, @code{ftell} does not work
-correctly with files larger than 2 GB.  The fix is to use ftello instead.
+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.
 @end itemize