Remove redundant AC_SUBST invocation.
[gnulib.git] / doc / posix-functions / lstat.texi
index dbe31f8..39d2dce 100644 (file)
@@ -35,4 +35,8 @@ portably replace @code{stat} via an object-like macro.  Therefore,
 expressions such as @code{(islnk ? lstat : stat) (name, buf)} are not
 portable, and should instead be written @code{islnk ? lstat (name,
 buf) : stat (name, buf)}.
+@item
+On some file systems, @code{st_size} contains bogus information for
+symlinks; use the gnulib module areadlink-with-size for a better way
+to get symlink contents.
 @end itemize