diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /networking/slattach.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2 busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'networking/slattach.c')
-rw-r--r-- | networking/slattach.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/slattach.c b/networking/slattach.c index 02ecb5e9f..52f7f3cff 100644 --- a/networking/slattach.c +++ b/networking/slattach.c | |||
@@ -64,7 +64,7 @@ static int set_termios_state_or_warn(struct termios *state) | |||
64 | * Go on after errors: we want to restore as many controlled ttys | 64 | * Go on after errors: we want to restore as many controlled ttys |
65 | * as possible. | 65 | * as possible. |
66 | */ | 66 | */ |
67 | static void restore_state_and_exit(int exitcode) ATTRIBUTE_NORETURN; | 67 | static void restore_state_and_exit(int exitcode) NORETURN; |
68 | static void restore_state_and_exit(int exitcode) | 68 | static void restore_state_and_exit(int exitcode) |
69 | { | 69 | { |
70 | struct termios state; | 70 | struct termios state; |
@@ -114,13 +114,13 @@ static void set_state(struct termios *state, int encap) | |||
114 | } | 114 | } |
115 | } | 115 | } |
116 | 116 | ||
117 | static void sig_handler(int signo ATTRIBUTE_UNUSED) | 117 | static void sig_handler(int signo UNUSED_PARAM) |
118 | { | 118 | { |
119 | restore_state_and_exit(EXIT_SUCCESS); | 119 | restore_state_and_exit(EXIT_SUCCESS); |
120 | } | 120 | } |
121 | 121 | ||
122 | int slattach_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 122 | int slattach_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
123 | int slattach_main(int argc ATTRIBUTE_UNUSED, char **argv) | 123 | int slattach_main(int argc UNUSED_PARAM, char **argv) |
124 | { | 124 | { |
125 | /* Line discipline code table */ | 125 | /* Line discipline code table */ |
126 | static const char proto_names[] ALIGN1 = | 126 | static const char proto_names[] ALIGN1 = |