[BZ #4342]
2007-04-27 Ulrich Drepper <drepper@redhat.com> [BZ #4342] * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow hexa-decimal floats without exponent. * stdio-common/tstscanf.c (main): Adjust Test 8 test for success. * iconv/gconv_charset.h (strip): Allow ':'.
This commit is contained in:
parent
bd9be67977
commit
109f51f2b2
@ -1,3 +1,10 @@
|
|||||||
|
2007-04-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #4342]
|
||||||
|
* stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
|
||||||
|
hexa-decimal floats without exponent.
|
||||||
|
* stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
|
||||||
|
|
||||||
2007-04-25 Ulrich Drepper <drepper@redhat.com>
|
2007-04-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
|
* sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
|
||||||
@ -16,7 +23,7 @@
|
|||||||
2007-04-25 Ulrich Drepper <drepper@redhat.com>
|
2007-04-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
[BZ #4406]
|
[BZ #4406]
|
||||||
* iconv/gconv_charset.h (strip): Allow ':'
|
* iconv/gconv_charset.h (strip): Allow ':'.
|
||||||
* iconv/iconv_open.c (iconv_open): Adjust comment.
|
* iconv/iconv_open.c (iconv_open): Adjust comment.
|
||||||
|
|
||||||
2007-04-25 Jakub Jelinek <jakub@redhat.com>
|
2007-04-25 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991,92,96,97,98,99,2000,2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1991,92,1996-2001,2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -272,7 +272,7 @@ main (int argc, char **argv)
|
|||||||
res = sscanf ("0x1234", "%lf", &d);
|
res = sscanf ("0x1234", "%lf", &d);
|
||||||
printf ("res = %d, d = %f\n", res, d);
|
printf ("res = %d, d = %f\n", res, d);
|
||||||
|
|
||||||
if (res != 0 || d != 123456.789)
|
if (res != 1 || d != 4660)
|
||||||
{
|
{
|
||||||
fputs ("test failed!\n", stdout);
|
fputs ("test failed!\n", stdout);
|
||||||
result = 1;
|
result = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user