gettimeofday: port recent C++ fix to Emacs
[gnulib.git] / doc / posix-functions / lstat.texi
1 @node lstat
2 @section @code{lstat}
3 @findex lstat
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lstat.html}
6
7 Gnulib module: lstat
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 On platforms where @code{off_t} is a 32-bit type, @code{lstat} may not
13 correctly report the size of files or block devices larger than 2 GB.
14 (Cf. @code{AC_SYS_LARGEFILE}.)
15 @item
16 For symlinks, when the argument ends in a slash, some platforms don't
17 dereference the argument:
18 Solaris 9.
19 @item
20 On some platforms, @code{lstat("file/",buf)} succeeds instead of
21 failing with @code{ENOTDIR}.
22 Solaris 9.
23 @item
24 On Windows platforms (excluding Cygwin), symlinks are not supported, so
25 @code{lstat} does not exist.
26 @end itemize
27
28 Portability problems not fixed by Gnulib:
29 @itemize
30 @item
31 @xref{sys/stat.h}, for general portability problems with @code{struct stat}.
32 @end itemize