[BusyBox-cvs] busybox/libbb Makefile.in,1.20,1.21 printf.c,1.1,1.2

Erik Andersen andersen at codepoet.org
Wed Apr 16 23:02:38 UTC 2003


Update of /var/cvs/busybox/libbb
In directory winder:/tmp/cvs-serv9310/libbb

Modified Files:
	Makefile.in printf.c 
Log Message:
Minor .o file naming change


Index: Makefile.in
===================================================================
RCS file: /var/cvs/busybox/libbb/Makefile.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- Makefile.in	19 Mar 2003 09:42:33 -0000	1.20
+++ Makefile.in	16 Apr 2003 23:02:35 -0000	1.21
@@ -67,7 +67,7 @@
 	xferror.o xferror_stdout.o xfflush_stdout.o strlen.o
 
 LIBBB_MSRC2:=$(LIBBB_DIR)printf.c
-LIBBB_MOBJ2:=vfprintf.o vprintf.o fprintf.o printf.o
+LIBBB_MOBJ2:=bb_vfprintf.o bb_vprintf.o bb_fprintf.o bb_printf.o
 
 LIBBB_MSRC3:=$(LIBBB_DIR)xgetularg.c
 LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \

Index: printf.c
===================================================================
RCS file: /var/cvs/busybox/libbb/printf.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- printf.c	19 Mar 2003 09:12:08 -0000	1.1
+++ printf.c	16 Apr 2003 23:02:35 -0000	1.2
@@ -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 @@
 }
 #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 @@
 }
 #endif
 
-#ifdef L_printf
+#ifdef L_bb_printf
 extern int bb_printf(const char * __restrict format, ...)
 {
 	va_list arg;



More information about the busybox-cvs mailing list