randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -124,6 +124,7 @@ lib-$(CONFIG_UNICODE_SUPPORT) += unicode.o
|
||||
lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o
|
||||
|
||||
lib-$(CONFIG_NC) += udp_io.o
|
||||
lib-$(CONFIG_NETCAT) += udp_io.o
|
||||
lib-$(CONFIG_DNSD) += udp_io.o
|
||||
lib-$(CONFIG_NTPD) += udp_io.o
|
||||
lib-$(CONFIG_TFTP) += udp_io.o
|
||||
|
@@ -90,7 +90,8 @@ static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
|
||||
# define CHAR_T char
|
||||
# define BB_isspace(c) isspace(c)
|
||||
# if ENABLE_FEATURE_EDITING_VI
|
||||
static bool BB_isalnum_or_underscore(CHAR_T c) {
|
||||
static bool BB_isalnum_or_underscore(CHAR_T c)
|
||||
{
|
||||
return ((unsigned)c < 256 && isalnum(c)) || c == '_';
|
||||
}
|
||||
# endif
|
||||
|
Reference in New Issue
Block a user