X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libiberty%2Fgetcwd.c;h=a19d26796d5715c74c3a7b95b1e3570ab8b22a09;hb=eab4ad60e30f2629eb357673b3b2dd0084bbd12e;hp=47b1c1eec31e1c680bbb5deb42efb07e84f6a3f6;hpb=4f1b64a0edecaabdc78f4c8ec063b413ee5756d1;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libiberty/getcwd.c b/libiberty/getcwd.c index 47b1c1eec31..a19d26796d5 100644 --- a/libiberty/getcwd.c +++ b/libiberty/getcwd.c @@ -2,24 +2,18 @@ This function is in the public domain. */ /* -NAME - getcwd -- get absolute pathname for current working directory -SYNOPSIS - char *getcwd (char pathname[len], len) +@deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len}) -DESCRIPTION - Copy the absolute pathname for the current working directory into - the supplied buffer and return a pointer to the buffer. If the - current directory's path doesn't fit in LEN characters, the result - is NULL and errno is set. +Copy the absolute pathname for the current working directory into +@var{pathname}, which is assumed to point to a buffer of at least +@var{len} bytes, and return a pointer to the buffer. If the current +directory's path doesn't fit in @var{len} characters, the result is +@code{NULL} and @code{errno} is set. If @var{pathname} is a null pointer, +@code{getcwd} will obtain @var{len} bytes of space using +@code{malloc}. - If pathname is a null pointer, getcwd() will obtain size bytes of - space using malloc. - -BUGS - Emulated via the getwd() call, which is reasonable for most - systems that do not have getcwd(). +@end deftypefn */ @@ -29,6 +23,12 @@ BUGS #include #endif #include +#ifdef HAVE_STRING_H +#include +#endif +#ifdef HAVE_STDLIB_H +#include +#endif extern char *getwd (); extern int errno; @@ -40,7 +40,7 @@ extern int errno; char * getcwd (buf, len) char *buf; - int len; + size_t len; { char ourbuf[MAXPATHLEN]; char *result;