From a60f84ebf07863e390b72a2b6150e461a1ec18e9 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 5 Jul 2008 09:18:54 +0000 Subject: *: rename ATTRIBUTE_XXX to just XXX. --- init/halt.c | 2 +- init/init.c | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'init') diff --git a/init/halt.c b/init/halt.c index 4fac3a86b..207069e12 100644 --- a/init/halt.c +++ b/init/halt.c @@ -16,7 +16,7 @@ #endif int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int halt_main(int argc ATTRIBUTE_UNUSED, char **argv) +int halt_main(int argc UNUSED_PARAM, char **argv) { static const int magic[] = { #ifdef RB_HALT_SYSTEM diff --git a/init/init.c b/init/init.c index e3993896d..232896709 100644 --- a/init/init.c +++ b/init/init.c @@ -96,7 +96,7 @@ static const char *const environment[] = { /* Function prototypes */ static void delete_init_action(struct init_action *a); -static void halt_reboot_pwoff(int sig) ATTRIBUTE_NORETURN; +static void halt_reboot_pwoff(int sig) NORETURN; static void waitfor(pid_t pid) { @@ -110,7 +110,7 @@ static void waitfor(pid_t pid) continue; } -static void loop_forever(void) ATTRIBUTE_NORETURN; +static void loop_forever(void) NORETURN; static void loop_forever(void) { while (1) @@ -594,7 +594,7 @@ static void halt_reboot_pwoff(int sig) /* Handler for QUIT - exec "restart" action, * else (no such action defined) do nothing */ -static void exec_restart_action(int sig ATTRIBUTE_UNUSED) +static void exec_restart_action(int sig UNUSED_PARAM) { struct init_action *a; @@ -617,13 +617,13 @@ static void exec_restart_action(int sig ATTRIBUTE_UNUSED) } } -static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED) +static void ctrlaltdel_signal(int sig UNUSED_PARAM) { run_actions(CTRLALTDEL); } /* The SIGSTOP & SIGTSTP handler */ -static void stop_handler(int sig ATTRIBUTE_UNUSED) +static void stop_handler(int sig UNUSED_PARAM) { int saved_errno = errno; @@ -635,7 +635,7 @@ static void stop_handler(int sig ATTRIBUTE_UNUSED) } /* The SIGCONT handler */ -static void cont_handler(int sig ATTRIBUTE_UNUSED) +static void cont_handler(int sig UNUSED_PARAM) { got_cont = 1; } @@ -790,7 +790,7 @@ static void parse_inittab(void) } #if ENABLE_FEATURE_USE_INITTAB -static void reload_signal(int sig ATTRIBUTE_UNUSED) +static void reload_signal(int sig UNUSED_PARAM) { struct init_action *a, *tmp; @@ -838,7 +838,7 @@ static void reload_signal(int sig ATTRIBUTE_UNUSED) #endif int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int init_main(int argc ATTRIBUTE_UNUSED, char **argv) +int init_main(int argc UNUSED_PARAM, char **argv) { struct init_action *a; pid_t wpid; -- cgit v1.2.3