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 /miscutils/hdparm.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r-- | miscutils/hdparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index a5d5b05..b75da16 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c @@ -678,7 +678,7 @@ static const char secu_str[] ALIGN1 = ; // Parse 512 byte disk identification block and print much crap. -static void identify(uint16_t *val) ATTRIBUTE_NORETURN; +static void identify(uint16_t *val) NORETURN; static void identify(uint16_t *val) { uint16_t ii, jj, kk; @@ -1908,7 +1908,7 @@ static int fromhex(unsigned char c) bb_error_msg_and_die("bad char: '%c' 0x%02x", c, c); } -static void identify_from_stdin(void) ATTRIBUTE_NORETURN; +static void identify_from_stdin(void) NORETURN; static void identify_from_stdin(void) { uint16_t sbuf[256]; |