Incorporate existing strcasestr doc into new doc structure.
[gnulib.git] / doc / functions / stat.texi
1 @node stat
2 @section @code{stat}
3 @findex stat
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/stat.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 On platforms where @code{off_t} is a 32-bit type, @code{stat} may not correctly
17 report the size of files or block devices larger than 2 GB.  The fix is to
18 use the @code{AC_SYS_LARGEFILE} macro.
19 @item
20 Cygwin's @code{stat} function sometimes sets @code{errno} to @code{EACCES} when
21 @code{ENOENT} would be more appropriate.
22 @end itemize