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?
This commit is contained in:
Rob Landley 2006-06-08 14:11:36 +00:00
parent 2e7dfc179c
commit 9c6f9552ec

View File

@ -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