diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 96496169d..2f882aa9d 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1332,9 +1332,10 @@ void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_ | |||
1332 | # if ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE | 1332 | # if ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE |
1333 | int is_applet_preferred(const char *name, const char *path) FAST_FUNC; | 1333 | int is_applet_preferred(const char *name, const char *path) FAST_FUNC; |
1334 | int find_applet_by_name_with_path(const char *name, const char *path) FAST_FUNC; | 1334 | int find_applet_by_name_with_path(const char *name, const char *path) FAST_FUNC; |
1335 | # else | ||
1336 | # define is_applet_preferred(n, p) (1) | ||
1337 | # endif | 1335 | # endif |
1336 | # else | ||
1337 | # define is_applet_preferred(n, p) (1) | ||
1338 | # define find_applet_by_name_with_path(n, p) find_applet_by_name(n) | ||
1338 | # endif | 1339 | # endif |
1339 | #endif | 1340 | #endif |
1340 | void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC; | 1341 | void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC; |