01ce781cf2b5fb17a0c723fecd2934521ed5f046
[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 @end itemize
23
24 Portability problems not fixed by Gnulib:
25 @itemize
26 @item
27 This function does not allow to determine the required size of output buffer;
28 the use of a non-NULL @samp{resolved} buffer is non-portable, since
29 PATH_MAX --- if it is defined --- is nothing more than a guess.
30 @end itemize