aboutsummaryrefslogtreecommitdiff
path: root/libbb/printf.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-29 16:52:56 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-29 16:52:56 +0000
commitb79f2997f1fee887a6833a6954e1eef1221359f3 (patch)
treebdec03f33a971a96f36c06dd5e2e971720718604 /libbb/printf.c
parent474500917e246405315586c0781d72b6d7263665 (diff)
downloadbusybox-w32-b79f2997f1fee887a6833a6954e1eef1221359f3.tar.gz
busybox-w32-b79f2997f1fee887a6833a6954e1eef1221359f3.tar.bz2
busybox-w32-b79f2997f1fee887a6833a6954e1eef1221359f3.zip
More extern removal from Robert P. Day.
git-svn-id: svn://busybox.net/trunk/busybox@14687 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 7eb60a91e..2e79555b5 100644
--- a/libbb/printf.c
+++ b/libbb/printf.c
@@ -38,7 +38,7 @@
38#include "libbb.h" 38#include "libbb.h"
39 39
40#ifdef L_bb_vfprintf 40#ifdef L_bb_vfprintf
41extern int bb_vfprintf(FILE * __restrict stream, 41int bb_vfprintf(FILE * __restrict stream,
42 const char * __restrict format, 42 const char * __restrict format,
43 va_list arg) 43 va_list arg)
44{ 44{
@@ -75,7 +75,7 @@ int bb_vprintf(const char * __restrict format, va_list arg)
75#endif 75#endif
76 76
77#ifdef L_bb_fprintf 77#ifdef L_bb_fprintf
78extern int bb_fprintf(FILE * __restrict stream, 78int bb_fprintf(FILE * __restrict stream,
79 const char * __restrict format, ...) 79 const char * __restrict format, ...)
80{ 80{
81 va_list arg; 81 va_list arg;