blob: 4d00af895572ad2c82e3b2be381736e8b0af909f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@node getcwd
@section @code{getcwd}
@findex getcwd
POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getcwd.html}
Gnulib module: getcwd
Portability problems fixed by Gnulib:
@itemize
@item
This function is missing on some older platforms.
@item
On glibc platforms, @code{getcwd (NULL, n)} allocates memory for the result.
On other platforms, this call is not allowed.
@item
This function does not handle long file names (greater than @code{PATH_MAX})
correctly on some platforms.
@end itemize
Portability problems not fixed by Gnulib:
@itemize
@end itemize
|