diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/appletlib.c | 7 | ||||
-rw-r--r-- | libbb/xfuncs.c | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 6267f2673..f3d530184 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -98,13 +98,6 @@ static const char *unpack_usage_messages(void) | |||
98 | #endif /* FEATURE_COMPRESS_USAGE */ | 98 | #endif /* FEATURE_COMPRESS_USAGE */ |
99 | 99 | ||
100 | 100 | ||
101 | static void full_write2_str(const char *str) | ||
102 | { | ||
103 | // This uses stdio: | ||
104 | //xwrite_str(STDERR_FILENO, str); | ||
105 | write(STDERR_FILENO, str, strlen(str)); | ||
106 | } | ||
107 | |||
108 | void FAST_FUNC bb_show_usage(void) | 101 | void FAST_FUNC bb_show_usage(void) |
109 | { | 102 | { |
110 | if (ENABLE_SHOW_USAGE) { | 103 | if (ENABLE_SHOW_USAGE) { |
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 6200fc600..1cd8d7c01 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -204,6 +204,16 @@ int FAST_FUNC bb_putchar_stderr(char ch) | |||
204 | return write(STDERR_FILENO, &ch, 1); | 204 | return write(STDERR_FILENO, &ch, 1); |
205 | } | 205 | } |
206 | 206 | ||
207 | ssize_t FAST_FUNC full_write1_str(const char *str) | ||
208 | { | ||
209 | return full_write(STDOUT_FILENO, str, strlen(str)); | ||
210 | } | ||
211 | |||
212 | ssize_t FAST_FUNC full_write2_str(const char *str) | ||
213 | { | ||
214 | return full_write(STDERR_FILENO, str, strlen(str)); | ||
215 | } | ||
216 | |||
207 | static int wh_helper(int value, int def_val, const char *env_name, int *err) | 217 | static int wh_helper(int value, int def_val, const char *env_name, int *err) |
208 | { | 218 | { |
209 | if (value == 0) { | 219 | if (value == 0) { |