From 9b49a5ed8551e46892af3f676e5d96d21b540e3c Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 11 Oct 2007 10:05:36 +0000 Subject: add -fvisibility=hidden to CC flags, mark XXX_main functions EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so --- coreutils/chmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/chmod.c') diff --git a/coreutils/chmod.c b/coreutils/chmod.c index dd7b78412..a58e4f8e1 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c @@ -67,7 +67,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* param, i return FALSE; } -int chmod_main(int argc, char **argv); +int chmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int chmod_main(int argc, char **argv) { int retval = EXIT_SUCCESS; -- cgit v1.2.3-55-g6feb