Brand new version of xargs. Tested thoroughly by Kent Robotti. (Domo arigato,
[oweals/busybox.git] / pwd.c
diff --git a/pwd.c b/pwd.c
index 1a023d383377f98b15c84d5d4be24b5f860a0ae7..c9de7778eec0765c75a1da43a1d2e4a553b560b9 100644 (file)
--- a/pwd.c
+++ b/pwd.c
@@ -21,7 +21,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <dirent.h>
 #include <errno.h>
@@ -30,9 +30,6 @@ extern int pwd_main(int argc, char **argv)
 {
        char buf[BUFSIZ + 1];
 
-       if (argc > 1 && strcmp(argv[1], "--help") == 0)
-               usage(pwd_usage);
-
        if (getcwd(buf, sizeof(buf)) == NULL)
                fatalError("%s\n", strerror(errno));