summaryrefslogtreecommitdiff
path: root/libbb/printf.c
diff options
context:
space:
mode:
authorRob Landley2006-03-29 16:52:56 +0000
committerRob Landley2006-03-29 16:52:56 +0000
commitca087713f24d3e856c46829c005d3aa43a5dbdf1 (patch)
treebdec03f33a971a96f36c06dd5e2e971720718604 /libbb/printf.c
parentcb8d4319a3ef49ed1d08d0b1a4b6ad4fc823f769 (diff)
downloadbusybox-ca087713f24d3e856c46829c005d3aa43a5dbdf1.zip
busybox-ca087713f24d3e856c46829c005d3aa43a5dbdf1.tar.gz
More extern removal from Robert P. Day.
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 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;