aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs_printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/xfuncs_printf.c')
-rw-r--r--libbb/xfuncs_printf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c
index 99596b9d0..f0399ca45 100644
--- a/libbb/xfuncs_printf.c
+++ b/libbb/xfuncs_printf.c
@@ -318,6 +318,11 @@ int FAST_FUNC bb_putchar(int ch)
318 return putchar(ch); 318 return putchar(ch);
319} 319}
320 320
321int FAST_FUNC fputs_stdout(const char *s)
322{
323 return fputs(s, stdout);
324}
325
321/* Die with an error message if we can't copy an entire FILE* to stdout, 326/* Die with an error message if we can't copy an entire FILE* to stdout,
322 * then close that file. */ 327 * then close that file. */
323void FAST_FUNC xprint_and_close_file(FILE *file) 328void FAST_FUNC xprint_and_close_file(FILE *file)