diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-06 03:37:17 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-06 03:37:17 +0000 |
commit | f763ad5a3646b8b88ad34474b81594e591ee3332 (patch) | |
tree | ff4640799ffe780665a91fca4686adb9232f5fd0 /libc/stdio/Makefile | |
parent | db07e536d4da78c06cf89f8a90bff1732734941e (diff) |
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.
Diffstat (limited to 'libc/stdio/Makefile')
-rw-r--r-- | libc/stdio/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |