randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -145,6 +145,8 @@ lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
|
||||
|
||||
lib-$(CONFIG_DF) += find_mount_point.o
|
||||
lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
|
||||
lib-$(CONFIG_MKFS_EXT2) += find_mount_point.o
|
||||
lib-$(CONFIG_MKFS_REISER) += find_mount_point.o
|
||||
lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o
|
||||
lib-$(CONFIG_MOUNT) += find_mount_point.o
|
||||
|
||||
|
||||
@@ -71,7 +71,9 @@
|
||||
# define BB_NUL L'\0'
|
||||
# define CHAR_T wchar_t
|
||||
static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
|
||||
# if ENABLE_FEATURE_EDITING_VI
|
||||
static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
|
||||
# endif
|
||||
static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
|
||||
# undef isspace
|
||||
# undef isalnum
|
||||
|
||||
Reference in New Issue
Block a user