rename: run_applet_by_name -> run_applet_and_exit

This commit is contained in:
Denis Vlasenko
2007-04-11 17:03:19 +00:00
parent 12c96a64a4
commit e4f2d064b0
8 changed files with 11 additions and 11 deletions

View File

@@ -675,7 +675,7 @@ const struct hwtype *get_hwntype(int type);
struct bb_applet;
extern const struct bb_applet *find_applet_by_name(const char *name);
/* Returns only if applet is not found. */
extern void run_applet_by_name(const char *name, int argc, char **argv);
extern void run_applet_and_exit(const char *name, int argc, char **argv);
extern void run_current_applet_and_exit(int argc, char **argv) ATTRIBUTE_NORETURN;
#endif