diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index a340f27d2..2a0b272c6 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1271,8 +1271,10 @@ void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_ | |||
1271 | #endif | 1271 | #endif |
1272 | void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC; | 1272 | void show_usage_if_dash_dash_help(int applet_no, char **argv) FAST_FUNC; |
1273 | #if defined(__linux__) | 1273 | #if defined(__linux__) |
1274 | int re_execed_comm(void) FAST_FUNC; | ||
1274 | void set_task_comm(const char *comm) FAST_FUNC; | 1275 | void set_task_comm(const char *comm) FAST_FUNC; |
1275 | #else | 1276 | #else |
1277 | # define re_execed_comm() 0 | ||
1276 | # define set_task_comm(name) ((void)0) | 1278 | # define set_task_comm(name) ((void)0) |
1277 | #endif | 1279 | #endif |
1278 | 1280 | ||