From: Rob Landley Date: Thu, 8 Jun 2006 14:11:36 +0000 (-0000) Subject: Some day, maybe gcc will be able to optimize out static functions that are X-Git-Tag: 1_2_0~179 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9c6f9552ec99b200f203943076778345b0946fb2;p=oweals%2Fbusybox.git 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? --- 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[] = { static void identify(uint16_t *id_supplied) ATTRIBUTE_NORETURN; static void identify_from_stdin(void) ATTRIBUTE_NORETURN; - +#else +void identify_from_stdin(void); #endif