diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index 85afdf20a..d7332714f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -495,11 +495,14 @@ extern void bb_vinfo_msg(const char *s, va_list p); | |||
495 | 495 | ||
496 | 496 | ||
497 | /* applets which are useful from another applets */ | 497 | /* applets which are useful from another applets */ |
498 | extern int bb_cat(char** argv); | 498 | int bb_cat(char** argv); |
499 | extern int bb_echo(char** argv); | 499 | int bb_echo(char** argv); |
500 | extern int bb_test(int argc, char** argv); | 500 | int bb_test(int argc, char** argv); |
501 | #if ENABLE_ROUTE | 501 | #if ENABLE_ROUTE |
502 | extern void bb_displayroutes(int noresolve, int netstatfmt); | 502 | void bb_displayroutes(int noresolve, int netstatfmt); |
503 | #endif | ||
504 | #if ENABLE_GUNZIP | ||
505 | int gunzip_main(int argc, char **argv); | ||
503 | #endif | 506 | #endif |
504 | 507 | ||
505 | 508 | ||