aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/include/libbb.h b/include/libbb.h
index edf27c6d5..202574adb 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -848,23 +848,20 @@ extern void bb_verror_msg(const char *s, va_list p, const char *strerr);
848 848
849/* applets which are useful from another applets */ 849/* applets which are useful from another applets */
850int bb_cat(char** argv); 850int bb_cat(char** argv);
851int echo_main(int argc, char** argv) MAIN_EXTERNALLY_VISIBLE; 851/* If shell needs them, these three "exist" even if not enabled as applets */
852int test_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 852int echo_main(int argc, char** argv) USE_ECHO(MAIN_EXTERNALLY_VISIBLE);
853int kill_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 853int test_main(int argc, char **argv) USE_TEST(MAIN_EXTERNALLY_VISIBLE);
854#if ENABLE_ROUTE 854int kill_main(int argc, char **argv) USE_KILL(MAIN_EXTERNALLY_VISIBLE);
855void bb_displayroutes(int noresolve, int netstatfmt);
856#endif
857int chown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 855int chown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
858#if ENABLE_GUNZIP
859int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 856int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
860#endif
861#if ENABLE_BUNZIP2
862int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 857int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
863#endif
864int bbunpack(char **argv, 858int bbunpack(char **argv,
865 char* (*make_new_name)(char *filename), 859 char* (*make_new_name)(char *filename),
866 USE_DESKTOP(long long) int (*unpacker)(void) 860 USE_DESKTOP(long long) int (*unpacker)(void)
867); 861);
862#if ENABLE_ROUTE
863void bb_displayroutes(int noresolve, int netstatfmt);
864#endif
868 865
869 866
870/* Networking */ 867/* Networking */