Fix fseeko/ftello on cygwin 1.5.24.
[gnulib.git] / doc / functions / stdin.texi
1 @node stdin
2 @section @code{stdin}
3 @findex stdin
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/stdin.html}
6
7 Gnulib module: ---
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
12
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 stdin is created in 32-bit mode instead of 64-bit mode: Cygwin 1.5.x.
17 One workaround is to use freopen(NULL, ``r'', stdin) on Cygwin 1.5.21
18 or newer.  Another is to use the gnulib ftello module and do
19 ftello(stdin).
20 @end itemize