aboutsummaryrefslogtreecommitdiff
path: root/libbb/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/printf.c')
-rw-r--r--libbb/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/printf.c b/libbb/printf.c
index 2cba31792..e61723242 100644
--- a/libbb/printf.c
+++ b/libbb/printf.c
@@ -145,7 +145,7 @@ extern int bb_vfprintf(FILE * __restrict stream,
145#endif 145#endif
146 146
147#ifdef L_bb_vprintf 147#ifdef L_bb_vprintf
148extern int bb_vprintf(const char * __restrict format, va_list arg) 148int bb_vprintf(const char * __restrict format, va_list arg)
149{ 149{
150 return bb_vfprintf(stdout, format, arg); 150 return bb_vfprintf(stdout, format, arg);
151} 151}
@@ -167,7 +167,7 @@ extern int bb_fprintf(FILE * __restrict stream,
167#endif 167#endif
168 168
169#ifdef L_bb_printf 169#ifdef L_bb_printf
170extern int bb_printf(const char * __restrict format, ...) 170int bb_printf(const char * __restrict format, ...)
171{ 171{
172 va_list arg; 172 va_list arg;
173 int rv; 173 int rv;