aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-11-17 18:25:26 +0000
committerEric Andersen <andersen@codepoet.org>2000-11-17 18:25:26 +0000
commite5aef92e22172d36152bae6e15d5c0419c758121 (patch)
tree1576263a85553b8bd1b3efd08a53b5c2898efb8b /busybox.c
parentcf32e23796a94e96d36d302973509935ea051816 (diff)
downloadbusybox-e5aef92e22172d36152bae6e15d5c0419c758121.tar.gz
Fix up builtin overrides, and hack in the binary search for finding
matching applets into the shell.
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/busybox.c b/busybox.c
index d356e4cae..0a3333d99 100644
--- a/busybox.c
+++ b/busybox.c
@@ -81,14 +81,6 @@ static void install_links(const char *busybox, int use_symbolic_links)
#endif /* BB_FEATURE_INSTALLER */
-static int applet_name_compare(const void *x, const void *y)
-{
- const struct BB_applet *applet1 = x;
- const struct BB_applet *applet2 = y;
-
- return strcmp(applet1->name, applet2->name);
-}
-
int main(int argc, char **argv)
{
struct BB_applet search_applet, *applet;