From: Jan-Benedict G. <jb...@us...> - 2005-12-09 22:13:14
|
Update of /cvsroot/linux-vax/toolchain/patches In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23826 Modified Files: uclibc-000007-nonnegative_floats_config_option.patch Log Message: - Rediff. Index: uclibc-000007-nonnegative_floats_config_option.patch =================================================================== RCS file: /cvsroot/linux-vax/toolchain/patches/uclibc-000007-nonnegative_floats_config_option.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- uclibc-000007-nonnegative_floats_config_option.patch 16 Nov 2005 11:07:47 -0000 1.2 +++ uclibc-000007-nonnegative_floats_config_option.patch 9 Dec 2005 22:13:06 -0000 1.3 @@ -1,6 +1,6 @@ diff -Nurp src-uclibc-fresh/extra/Configs/Config.in.arch src-uclibc-hacked/extra/Configs/Config.in.arch --- src-uclibc-fresh/extra/Configs/Config.in.arch 2005-11-11 08:49:02.000000000 +0100 -+++ src-uclibc-hacked/extra/Configs/Config.in.arch 2005-11-16 01:53:33.000000000 +0100 ++++ src-uclibc-hacked/extra/Configs/Config.in.arch 2005-12-09 22:51:24.000000000 +0100 @@ -29,8 +29,8 @@ config ARCH_HAS_MMU default y depends !ARCH_HAS_NO_MMU @@ -49,8 +49,8 @@ config KERNEL_SOURCE diff -Nurp src-uclibc-fresh/libc/stdio/_fpmaxtostr.c src-uclibc-hacked/libc/stdio/_fpmaxtostr.c ---- src-uclibc-fresh/libc/stdio/_fpmaxtostr.c 2005-11-15 23:21:14.000000000 +0100 -+++ src-uclibc-hacked/libc/stdio/_fpmaxtostr.c 2005-11-16 01:53:33.000000000 +0100 +--- src-uclibc-fresh/libc/stdio/_fpmaxtostr.c 2005-12-09 19:39:12.000000000 +0100 ++++ src-uclibc-hacked/libc/stdio/_fpmaxtostr.c 2005-12-09 23:01:49.000000000 +0100 @@ -17,7 +17,7 @@ typedef size_t (__fp_outfunc_t)(FILE *fp /* Copyright (C) 2000, 2001, 2003 Manuel Novoa III @@ -119,14 +119,14 @@ cnt += num_groups * tslen; /* Adjust count now for sep chars. */ --/* printf("\n"); */ -+/* printf("\n"); */ +-/* __printf("\n"); */ ++/* __printf("\n"); */ do { if (!blk) { /* Initial group could be 0 digits long! */ blk = nblk2; } else if (len >= blk) { /* Enough digits for a group. */ --/* printf("norm: len=%d blk=%d \"%.*s\"\n", len, blk, blk, gp); */ -+/* printf("norm: len=%d blk=%d \"%.*s\"\n", len, blk, blk, gp); */ +-/* __printf("norm: len=%d blk=%d \"%.*s\"\n", len, blk, blk, gp); */ ++/* __printf("norm: len=%d blk=%d \"%.*s\"\n", len, blk, blk, gp); */ if (fp_outfunc(fp, *ppc, blk, (intptr_t) gp) != blk) { return -1; } @@ -134,11 +134,11 @@ } len -= blk; } else { /* Transition to 0s. */ --/* printf("trans: len=%d blk=%d \"%.*s\"\n", len, blk, len, gp); */ -+/* printf("trans: len=%d blk=%d \"%.*s\"\n", len, blk, len, gp); */ +-/* __printf("trans: len=%d blk=%d \"%.*s\"\n", len, blk, len, gp); */ ++/* __printf("trans: len=%d blk=%d \"%.*s\"\n", len, blk, len, gp); */ if (len) { --/* printf("len\n"); */ -+/* printf("len\n"); */ +-/* __printf("len\n"); */ ++/* __printf("len\n"); */ if (fp_outfunc(fp, *ppc, len, (intptr_t) gp) != len) { return -1; } @@ -146,8 +146,8 @@ } if (ppc[3] == FPO_ZERO_PAD) { /* Need to group 0s */ --/* printf("zeropad\n"); */ -+/* printf("zeropad\n"); */ +-/* __printf("zeropad\n"); */ ++/* __printf("zeropad\n"); */ cnt += ppc[1]; ppc += 3; gp = (const char *) ppc[2]; @@ -155,8 +155,8 @@ } blk = nblk2; --/* printf("num_groups=%d blk=%d\n", num_groups, blk); */ -+/* printf("num_groups=%d blk=%d\n", num_groups, blk); */ +-/* __printf("num_groups=%d blk=%d\n", num_groups, blk); */ ++/* __printf("num_groups=%d blk=%d\n", num_groups, blk); */ } while (1); } else |