aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 740c25528..482fcce0c 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1320,6 +1320,14 @@ void run_noexec_applet_and_exit(int a, const char *name, char **argv) NORETURN F
1320#ifndef BUILD_INDIVIDUAL 1320#ifndef BUILD_INDIVIDUAL
1321int find_applet_by_name(const char *name) FAST_FUNC; 1321int find_applet_by_name(const char *name) FAST_FUNC;
1322void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; 1322void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC;
1323int find_preferred_applet_by_name(const char *name) FAST_FUNC;
1324int is_applet_preferred(const char *name) FAST_FUNC;
1325# if ENABLE_PLATFORM_MINGW32 && \
1326 (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE)
1327# define find_applet_by_name(n) find_preferred_applet_by_name(n)
1328# else
1329# define is_applet_preferred(n) (1)
1330# endif
1323#endif 1331#endif
1324void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC; 1332void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC;
1325#if defined(__linux__) 1333#if defined(__linux__)