Fix up builtin overrides, and hack in the binary search for finding
matching applets into the shell.
diff --git a/utility.c b/utility.c
index e79e441..c23ebcd 100644
--- a/utility.c
+++ b/utility.c
@@ -1775,6 +1775,14 @@
 }
 #endif
 
+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);
+}
+
 /* END CODE */
 /*
 Local Variables: