diff options
author | Denis Vlasenko | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /runit/sv.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'runit/sv.c')
-rw-r--r-- | runit/sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -176,7 +176,7 @@ struct globals { #define INIT_G() do { } while (0) -static void fatal_cannot(const char *m1) ATTRIBUTE_NORETURN; +static void fatal_cannot(const char *m1) NORETURN; static void fatal_cannot(const char *m1) { bb_perror_msg("fatal: cannot %s", m1); @@ -293,7 +293,7 @@ static unsigned svstatus_print(const char *m) return pid ? 1 : 2; } -static int status(const char *unused ATTRIBUTE_UNUSED) +static int status(const char *unused UNUSED_PARAM) { int r; |