diff options
author | Rob Landley <rob@landley.net> | 2006-06-08 14:11:36 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-06-08 14:11:36 +0000 |
commit | 9c6f9552ec99b200f203943076778345b0946fb2 (patch) | |
tree | a453d63bc3ece41a92482d6527ed02f5ce05e0bb | |
parent | 2e7dfc179c0041475cd6a6b981f2f037df01c784 (diff) | |
download | busybox-w32-9c6f9552ec99b200f203943076778345b0946fb2.tar.gz busybox-w32-9c6f9552ec99b200f203943076778345b0946fb2.tar.bz2 busybox-w32-9c6f9552ec99b200f203943076778345b0946fb2.zip |
Some day, maybe gcc will be able to optimize out static functions that are
never used so we don't have to #ifdef them. Wouldn't that be nice?
-rw-r--r-- | miscutils/hdparm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 512995a4b..81e7c6e4c 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -398,7 +398,8 @@ static const char * const cmd_feat_str[] = { | |||
398 | 398 | ||
399 | static void identify(uint16_t *id_supplied) ATTRIBUTE_NORETURN; | 399 | static void identify(uint16_t *id_supplied) ATTRIBUTE_NORETURN; |
400 | static void identify_from_stdin(void) ATTRIBUTE_NORETURN; | 400 | static void identify_from_stdin(void) ATTRIBUTE_NORETURN; |
401 | 401 | #else | |
402 | void identify_from_stdin(void); | ||
402 | #endif | 403 | #endif |
403 | 404 | ||
404 | 405 | ||