avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / access.texi
1 @node access
2 @section @code{access}
3 @findex access
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/access.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 This function uses the effective id instead of the real id on some
17 platforms:
18 Cygwin 1.5.x.
19 @end itemize
20
21 Other problems of this function:
22 @itemize
23 @item
24 There is an inherent race between calling this function and performing
25 some action based on the results; you should think twice before trusting
26 this function, especially in a set-uid or set-gid program.
27 @item
28 This function does not have an option for not following symbolic links
29 (like @code{stat} versus @code{lstat}).  If you need this option, use
30 the Gnulib module @code{faccessat} with the @code{AT_EACCESS} flag.
31 @end itemize