avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / realpath.texi
1 @node realpath
2 @section @code{realpath}
3 @findex realpath
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/realpath.html}
6
7 Gnulib module: canonicalize-lgpl
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 mingw, BeOS.
14 @item
15 This function does not allow for a NULL @samp{resolved} parameter on
16 some platforms:
17 Solaris.
18 @item
19 This function does not always return an absolute path on some
20 platforms:
21 Solaris.
22 @item
23 This function fails to detect trailing slashes on non-directories on
24 some platforms:
25 glibc 2.3.5.
26 @item
27 This function fails to recognize non-directories followed @samp{..} on
28 some platforms:
29 cygwin.
30 @end itemize
31
32 Portability problems not fixed by Gnulib:
33 @itemize
34 @item
35 This function does not allow to determine the required size of output buffer;
36 the use of a non-NULL @samp{resolved} buffer is non-portable, since
37 PATH_MAX --- if it is defined --- is nothing more than a guess.
38 @end itemize