diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 15:48:19 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 15:48:19 +0200 |
commit | d9eb40c18519d10aac3b3d008aa7e338ae830b72 (patch) | |
tree | cffe3867dedefadb361ec6cbd507e9f967e36e90 /include | |
parent | 0cecbe7d5de237a6c699c67ae53ae2e2481eff43 (diff) | |
download | busybox-w32-d9eb40c18519d10aac3b3d008aa7e338ae830b72.tar.gz busybox-w32-d9eb40c18519d10aac3b3d008aa7e338ae830b72.tar.bz2 busybox-w32-d9eb40c18519d10aac3b3d008aa7e338ae830b72.zip |
fix errors found with make_single_applets.sh
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 04071639a..2c30bde6f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1247,7 +1247,7 @@ extern void bb_logenv_override(void) FAST_FUNC; | |||
1247 | 1247 | ||
1248 | 1248 | ||
1249 | /* Applets which are useful from another applets */ | 1249 | /* Applets which are useful from another applets */ |
1250 | int bb_cat(char** argv); | 1250 | int bb_cat(char** argv) FAST_FUNC; |
1251 | /* If shell needs them, they exist even if not enabled as applets */ | 1251 | /* If shell needs them, they exist even if not enabled as applets */ |
1252 | int echo_main(int argc, char** argv) IF_ECHO(MAIN_EXTERNALLY_VISIBLE); | 1252 | int echo_main(int argc, char** argv) IF_ECHO(MAIN_EXTERNALLY_VISIBLE); |
1253 | int printf_main(int argc, char **argv) IF_PRINTF(MAIN_EXTERNALLY_VISIBLE); | 1253 | int printf_main(int argc, char **argv) IF_PRINTF(MAIN_EXTERNALLY_VISIBLE); |