diff options
Diffstat (limited to 'libbb/printf.c')
-rw-r--r-- | libbb/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/printf.c b/libbb/printf.c index 7eb60a9..2e79555 100644 --- a/libbb/printf.c +++ b/libbb/printf.c @@ -38,7 +38,7 @@ #include "libbb.h" #ifdef L_bb_vfprintf -extern int bb_vfprintf(FILE * __restrict stream, +int bb_vfprintf(FILE * __restrict stream, const char * __restrict format, va_list arg) { @@ -75,7 +75,7 @@ int bb_vprintf(const char * __restrict format, va_list arg) #endif #ifdef L_bb_fprintf -extern int bb_fprintf(FILE * __restrict stream, +int bb_fprintf(FILE * __restrict stream, const char * __restrict format, ...) { va_list arg; |