From f763ad5a3646b8b88ad34474b81594e591ee3332 Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Sat, 6 Sep 2003 03:37:17 +0000 Subject: Implement vsnprintf (old_vfprintf only) and vsnscanf when uClibc is configured with non-buffered stdio and non-wchar mode. Fix a couple of bugs that showed up in minimalist configurations. Update old_vfprintf to handle size qualifiers on the integer and %n conversions. It now passed the glibc printf tests with the exception of a floating point rounding difference. --- libc/stdio/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/stdio/Makefile') diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile index 44ce51848..b92eed2a1 100644 --- a/libc/stdio/Makefile +++ b/libc/stdio/Makefile @@ -50,7 +50,7 @@ MOBJ = fclose.o fflush.o fopen.o freopen.o perror.o remove.o \ MSRC2= printf.c MOBJ2= vsnprintf.o vdprintf.o vasprintf.o vprintf.o vsprintf.o \ fprintf.o snprintf.o dprintf.o asprintf.o printf.o sprintf.o \ - _store_inttype.o + _store_inttype.o _load_inttype.o MSRC3=scanf.c MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o \ @@ -65,7 +65,7 @@ endif ifneq ($(USE_OLD_VFPRINTF),y) MOBJ2 += _ppfs_init.o _ppfs_prepargs.o _ppfs_setargs.o \ - _ppfs_parsespec.o vfprintf.o _load_inttype.o \ + _ppfs_parsespec.o vfprintf.o \ register_printf_function.o parse_printf_format.o endif -- cgit v1.2.3