aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index e4a19ac04..3f3e033fe 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1112,9 +1112,10 @@ int wait_for_exitstatus(pid_t pid) FAST_FUNC;
1112int spawn_and_wait(char **argv) FAST_FUNC; 1112int spawn_and_wait(char **argv) FAST_FUNC;
1113/* Does NOT check that applet is NOFORK, just blindly runs it */ 1113/* Does NOT check that applet is NOFORK, just blindly runs it */
1114int run_nofork_applet(int applet_no, char **argv) FAST_FUNC; 1114int run_nofork_applet(int applet_no, char **argv) FAST_FUNC;
1115void run_noexec_applet_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC;
1115#ifndef BUILD_INDIVIDUAL 1116#ifndef BUILD_INDIVIDUAL
1116extern int find_applet_by_name(const char *name) FAST_FUNC; 1117int find_applet_by_name(const char *name) FAST_FUNC;
1117extern void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; 1118void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC;
1118#endif 1119#endif
1119#if defined(__linux__) 1120#if defined(__linux__)
1120void set_task_comm(const char *comm) FAST_FUNC; 1121void set_task_comm(const char *comm) FAST_FUNC;