X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fmessages.c;h=e11dddc50f87933d33fe61598a17fce590dffc73;hb=164c5c80ba122a6ed71a29d41730c802750a5ae1;hp=671c452d297114f25e35d166c321e13f26d1edae;hpb=c7bda1ce659294d6e22c06e087f6f265983c7578;p=oweals%2Fbusybox.git diff --git a/libbb/messages.c b/libbb/messages.c index 671c452d2..e11dddc50 100644 --- a/libbb/messages.c +++ b/libbb/messages.c @@ -36,6 +36,9 @@ #ifdef L_write_error const char * const bb_msg_write_error = "Write Error"; #endif +#ifdef L_read_error + const char * const bb_msg_read_error = "Read Error"; +#endif #ifdef L_name_longer_than_foo const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported."; #endif @@ -94,3 +97,10 @@ const char * const bb_path_motd_file = MOTD_FILE; const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL; #endif +#ifdef L_bb_dev_null +const char * const bb_dev_null = "/dev/null"; +#endif + +#ifdef L_bb_common_bufsiz1 +char bb_common_bufsiz1[BUFSIZ+1]; +#endif