1 /* getpwd.c - get the working directory */
5 @deftypefn Supplemental char* getpwd (void)
7 Returns the current working directory. This implementation caches the
8 result on the assumption that the process will not call @code{chdir}
9 between calls to @code{getpwd}.
19 #include <sys/types.h>
32 #ifdef HAVE_SYS_PARAM_H
33 #include <sys/param.h>
39 /* Prototype these in case the system headers don't provide them. */
40 extern char *getpwd ();
41 extern char *getwd ();
43 #include "libiberty.h"
45 /* Virtually every UN*X system now in common use (except for pre-4.3-tahoe
46 BSD systems) now provides getcwd as called for by POSIX. Allow for
47 the few exceptions to the general rule here. */
49 #if !defined(HAVE_GETCWD) && defined(HAVE_GETWD)
50 #define getcwd(buf,len) getwd(buf)
54 #define GUESSPATHLEN (MAXPATHLEN + 1)
56 #define GUESSPATHLEN 100
59 #if !(defined (VMS) || (defined(_WIN32) && !defined(__CYGWIN__)))
61 /* Get the working directory. Use the PWD environment variable if it's
62 set correctly, since this is faster and gives more uniform answers
63 to the user. Yield the working directory if successful; otherwise,
64 yield 0 and set errno. */
70 static int failure_errno
;
74 struct stat dotstat
, pwdstat
;
76 if (!p
&& !(errno
= failure_errno
))
78 if (! ((p
= getenv ("PWD")) != 0
80 && stat (p
, &pwdstat
) == 0
81 && stat (".", &dotstat
) == 0
82 && dotstat
.st_ino
== pwdstat
.st_ino
83 && dotstat
.st_dev
== pwdstat
.st_dev
))
85 /* The shortcut didn't work. Try the slow, ``sure'' way. */
86 for (s
= GUESSPATHLEN
; ! getcwd (p
= xmalloc (s
), s
); s
*= 2)
94 errno
= failure_errno
= e
;
100 /* Cache the result. This assumes that the program does
101 not invoke chdir between calls to getpwd. */
107 #else /* VMS || _WIN32 && !__CYGWIN__ */
110 #define MAXPATHLEN 255
116 static char *pwd
= 0;
119 pwd
= getcwd (xmalloc (MAXPATHLEN
+ 1), MAXPATHLEN
+ 1
127 #endif /* VMS || _WIN32 && !__CYGWIN__ */