aboutsummaryrefslogtreecommitdiff
path: root/libbb/printf.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-04-16 23:02:35 +0000
committerEric Andersen <andersen@codepoet.org>2003-04-16 23:02:35 +0000
commit343658582bb13bc7cb7b7c2333465f0a090c4942 (patch)
treee7b36a8b9735a2052d3be3203162836802d1e1bb /libbb/printf.c
parent7cb6ef7982877402222b6d43b5b27645c59ce3f5 (diff)
downloadbusybox-343658582bb13bc7cb7b7c2333465f0a090c4942.tar.gz
Minor .o file naming change
Diffstat (limited to 'libbb/printf.c')
-rw-r--r--libbb/printf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/printf.c b/libbb/printf.c
index 686257699..923c5a1a4 100644
--- a/libbb/printf.c
+++ b/libbb/printf.c
@@ -125,7 +125,7 @@
#error Your stdio library is currently not supported. Please see the commented source.
#endif
-#ifdef L_vfprintf
+#ifdef L_bb_vfprintf
extern int bb_vfprintf(FILE * __restrict stream,
const char * __restrict format,
va_list arg)
@@ -140,14 +140,14 @@ extern int bb_vfprintf(FILE * __restrict stream,
}
#endif
-#ifdef L_vprintf
+#ifdef L_bb_vprintf
extern int bb_vprintf(const char * __restrict format, va_list arg)
{
return bb_vfprintf(stdout, format, arg);
}
#endif
-#ifdef L_fprintf
+#ifdef L_bb_fprintf
extern int bb_fprintf(FILE * __restrict stream,
const char * __restrict format, ...)
{
@@ -162,7 +162,7 @@ extern int bb_fprintf(FILE * __restrict stream,
}
#endif
-#ifdef L_printf
+#ifdef L_bb_printf
extern int bb_printf(const char * __restrict format, ...)
{
va_list arg;