summaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6c6b4863c..cf00b5250 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -512,6 +512,9 @@ int execable_file(const char *name);
512char *find_execable(const char *filename); 512char *find_execable(const char *filename);
513int exists_execable(const char *filename); 513int exists_execable(const char *filename);
514 514
515/* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff),
516 * but it may exec busybox and call applet instead of searching PATH.
517 */
515#if ENABLE_FEATURE_PREFER_APPLETS 518#if ENABLE_FEATURE_PREFER_APPLETS
516int bb_execvp(const char *file, char *const argv[]); 519int bb_execvp(const char *file, char *const argv[]);
517#define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd) 520#define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)