mirror of https://github.com/mirror/busybox.git
str2u() is only used when FEATURE_SORT_BIG is enabled
parent
e5c095345e
commit
a71199e0f0
|
@ -265,6 +265,7 @@ static int compare_keys(const void *xarg, const void *yarg)
|
|||
return retval;
|
||||
}
|
||||
|
||||
#if ENABLE_FEATURE_SORT_BIG
|
||||
static unsigned str2u(char **str)
|
||||
{
|
||||
unsigned long lu;
|
||||
|
@ -275,6 +276,7 @@ static unsigned str2u(char **str)
|
|||
bb_error_msg_and_die("bad field specification");
|
||||
return lu;
|
||||
}
|
||||
#endif
|
||||
|
||||
int sort_main(int argc, char **argv)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue