Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-23 00:01:23 +0400
committerEric Andersen <andersen@codepoet.org>2000-09-23 00:01:23 +0400
commit92a61c1206572f4a6e55baa24e7cdd4f180d4b64 (patch)
treec5354bb550d20972523bfb5c38b8666df527d75d /busybox.c
parent90f580ad5bde613e01a5ddf2efb5eb2d3a5f6a72 (diff)
Add in xargs
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/busybox.c b/busybox.c
index 43871b781..f9237744c 100644
--- a/busybox.c
+++ b/busybox.c
@@ -349,6 +349,9 @@ const struct BB_applet applets[] = {
#ifdef BB_WHOAMI
{"whoami", whoami_main, _BB_DIR_USR_BIN, whoami_usage},
#endif
+#ifdef BB_XARGS
+ {"xargs", xargs_main, _BB_DIR_USR_BIN, xargs_usage},
+#endif
#ifdef BB_YES
{"yes", yes_main, _BB_DIR_USR_BIN, yes_usage},
#endif