diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-03 17:28:39 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-03 17:28:39 +0000 |
commit | 06af2165288cd6516b89001ec9e24992619230e0 (patch) | |
tree | 840d22e507465aa6eb27c30c7ab8e80d9c469ae0 /include | |
parent | c7ba8b9d6c926231c1c191136b1ea0bc14b87771 (diff) | |
download | busybox-w32-06af2165288cd6516b89001ec9e24992619230e0.tar.gz busybox-w32-06af2165288cd6516b89001ec9e24992619230e0.tar.bz2 busybox-w32-06af2165288cd6516b89001ec9e24992619230e0.zip |
suppress warnings about easch <applet>_main() having
no preceding prototype
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 | ||