strchrnul: work around cygwin bug
[pspp] / doc / posix-functions / lstat.texi
index 328b896c9004edd373620c46a33910fd9c8294f5..2989678af041ffe03d052adabfc2a5ed51f33c46 100644 (file)
@@ -2,7 +2,7 @@
 @section @code{lstat}
 @findex lstat
 
-POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lstat.html}
+POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lstat.html}
 
 Gnulib module: lstat
 
@@ -36,7 +36,7 @@ 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 filesystems, @code{st_size} contains bogus information for
+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