diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-08-21 22:02:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-08-21 22:02:34 +0000 |
commit | a1f16bba72c78eca9359692e354fa35c0f3366c1 (patch) | |
tree | f95f7cd59b05597b5719ae6f50ea81b62b70294a /applets/busybox.c | |
parent | e2205f093bbdd251de8b2efe1f63925510fcbad5 (diff) |
Added getopt(1) from "Alfred M. Szmidt" <ams@trillian.itslinux.org>
-Erik
Diffstat (limited to 'applets/busybox.c')
-rw-r--r-- | applets/busybox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 5d13a7b98..d93fc5185 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -100,6 +100,9 @@ const struct BB_applet applets[] = { #ifdef BB_FSCK_MINIX {"fsck.minix", fsck_minix_main, _BB_DIR_SBIN, fsck_minix_usage}, #endif +#ifdef BB_GETOPT + {"getopt", getopt_main, _BB_DIR_BIN}, +#endif #ifdef BB_GREP {"grep", grep_main, _BB_DIR_BIN, grep_usage}, #endif |