add -fvisibility=hidden to CC flags, mark XXX_main functions
EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
This commit is contained in:
@ -41,8 +41,8 @@ static char *__from_cpuset(cpu_set_t *mask)
|
||||
|
||||
#define OPT_p 1
|
||||
|
||||
int taskset_main(int argc, char** argv);
|
||||
int taskset_main(int argc, char** argv)
|
||||
int taskset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
||||
int taskset_main(int argc, char **argv)
|
||||
{
|
||||
cpu_set_t mask, new_mask;
|
||||
pid_t pid = 0;
|
||||
|
Reference in New Issue
Block a user