aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-12-08 12:24:48 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-12-08 12:24:48 +0100
commit548620c18b1f0988dbeab1009788daf9f002e927 (patch)
tree3bfb327ed325f7aa869f51fe639e15811f3c556c /include/libbb.h
parent4051a99f5fe4b1e1914e26924d166a629bf3c71e (diff)
downloadbusybox-548620c18b1f0988dbeab1009788daf9f002e927.tar.gz
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index bdafcf5a6..a42a2fba8 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1191,8 +1191,16 @@ int bb_cat(char** argv);
/* If shell needs them, they exist even if not enabled as applets */
int echo_main(int argc, char** argv) IF_ECHO(MAIN_EXTERNALLY_VISIBLE);
int printf_main(int argc, char **argv) IF_PRINTF(MAIN_EXTERNALLY_VISIBLE);
-int test_main(int argc, char **argv) IF_TEST(MAIN_EXTERNALLY_VISIBLE);
-int kill_main(int argc, char **argv) IF_KILL(MAIN_EXTERNALLY_VISIBLE);
+int test_main(int argc, char **argv)
+#if ENABLE_TEST || ENABLE_TEST1 || ENABLE_TEST2
+ MAIN_EXTERNALLY_VISIBLE
+#endif
+;
+int kill_main(int argc, char **argv)
+#if ENABLE_KILL || ENABLE_KILLALL || ENABLE_KILLALL5
+ MAIN_EXTERNALLY_VISIBLE
+#endif
+;
/* Similar, but used by chgrp, not shell */
int chown_main(int argc, char **argv) IF_CHOWN(MAIN_EXTERNALLY_VISIBLE);
/* Used by ftpd */