avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / fseek.texi
1 @node fseek
2 @section @code{fseek}
3 @findex fseek
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fseek.html}
6
7 Gnulib module: fseek
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function mistakenly succeeds on pipes on some platforms: mingw.
13 @end itemize
14
15 Portability problems not fixed by Gnulib:
16 @itemize
17 @item
18 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
19 upon failure.
20 @item
21 On platforms where @code{long} is a 32-bit type, @code{fseek} does not work
22 correctly with files larger than 2 GB.  The fix is to use @code{fseeko}
23 instead and to invoke the @code{AC_SYS_LARGEFILE} macro.
24 @end itemize