diff options
author | Erik Andersen | 2000-04-28 00:18:56 +0000 |
---|---|---|
committer | Erik Andersen | 2000-04-28 00:18:56 +0000 |
commit | 4f3f757d56fbf420ea5030dcf7ea971b3da3ab47 (patch) | |
tree | d986e9bb9f03bf1f83465c274c35c0d58ed544e4 /coreutils/pwd.c | |
parent | 227a59b05d6df9b4be5990915646249d6f548822 (diff) | |
download | busybox-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.zip busybox-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.tar.gz |
Latest and greatest. Some effort at libc5 (aiming towards newlib)
compatability.
-Erik
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r-- | coreutils/pwd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index 0016317..e77a0ca 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c @@ -24,11 +24,10 @@ #include "internal.h" #include <stdio.h> #include <dirent.h> -#include <sys/param.h> extern int pwd_main(int argc, char **argv) { - char buf[PATH_MAX + 1]; + char buf[BUFSIZ + 1]; if (getcwd(buf, sizeof(buf)) == NULL) { perror("get working directory"); |