diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-11 10:05:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-11 10:05:36 +0000 |
commit | 9b49a5ed8551e46892af3f676e5d96d21b540e3c (patch) | |
tree | 3d177ef7f3f5e8338690718c86012203ef29a7da /findutils | |
parent | 8d82cf72c99a8ab8bdbb0b179a1f1135a004c47a (diff) | |
download | busybox-w32-9b49a5ed8551e46892af3f676e5d96d21b540e3c.tar.gz busybox-w32-9b49a5ed8551e46892af3f676e5d96d21b540e3c.tar.bz2 busybox-w32-9b49a5ed8551e46892af3f676e5d96d21b540e3c.zip |
add -fvisibility=hidden to CC flags, mark XXX_main functions
EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/find.c | 2 | ||||
-rw-r--r-- | findutils/grep.c | 2 | ||||
-rw-r--r-- | findutils/xargs.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/findutils/find.c b/findutils/find.c index b61881497..9efe2db40 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -794,7 +794,7 @@ static action*** parse_params(char **argv) | |||
794 | } | 794 | } |
795 | 795 | ||
796 | 796 | ||
797 | int find_main(int argc, char **argv); | 797 | int find_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
798 | int find_main(int argc, char **argv) | 798 | int find_main(int argc, char **argv) |
799 | { | 799 | { |
800 | static const char options[] ALIGN1 = | 800 | static const char options[] ALIGN1 = |
diff --git a/findutils/grep.c b/findutils/grep.c index 2d886a025..fc40be244 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -393,7 +393,7 @@ static int grep_dir(const char *dir) | |||
393 | return matched; | 393 | return matched; |
394 | } | 394 | } |
395 | 395 | ||
396 | int grep_main(int argc, char **argv); | 396 | int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
397 | int grep_main(int argc, char **argv) | 397 | int grep_main(int argc, char **argv) |
398 | { | 398 | { |
399 | FILE *file; | 399 | FILE *file; |
diff --git a/findutils/xargs.c b/findutils/xargs.c index f7c7832d5..ee16ea675 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
@@ -373,7 +373,7 @@ enum { | |||
373 | USE_FEATURE_XARGS_SUPPORT_TERMOPT( "x") \ | 373 | USE_FEATURE_XARGS_SUPPORT_TERMOPT( "x") \ |
374 | USE_FEATURE_XARGS_SUPPORT_ZERO_TERM( "0") | 374 | USE_FEATURE_XARGS_SUPPORT_ZERO_TERM( "0") |
375 | 375 | ||
376 | int xargs_main(int argc, char **argv); | 376 | int xargs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
377 | int xargs_main(int argc, char **argv) | 377 | int xargs_main(int argc, char **argv) |
378 | { | 378 | { |
379 | char **args; | 379 | char **args; |