1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Fri Dec 15 04:41:22 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu>

* stdio-common/Makefile (tests): Add bug10.
	* stdio-common/bug10.c: New file.  From HJ Lu.

	* stdio-common/tstdiomisc.c: Make more test-suite like: exit
	status tells about successful run.

	* stdio-common/vfscanf.c [!USE_IN_LIBIO]: Use `flags' to check
	format correctness.
	Correct handling of trailing white spaces in format + EOF.

Fri Dec 15 01:31:56 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>

	* stdio-common/Makefile (tests): Add bug8 and bug9.
	* stdio-common/bug8.c, stdio-common/bug9.c: New tests.

	* stdio-common/vfscanf.c: Fix bug in dynamic buffer handling.

	* stdlib/strtod.c: Correct spelling: nominator -> numerator.
	Thanks to Jim Meyering.

Sat Nov 25 06:05:12 1995  H.J. Lu  <hjl@nynexst.com>

	* stdio-common/vfscanf.c: Always check width !=0.
	Correctly handle %%.
This commit is contained in:
Roland McGrath
1995-12-15 05:22:35 +00:00
parent faf92f2a62
commit 05be689b57
8 changed files with 183 additions and 59 deletions

View File

@ -911,9 +911,9 @@ INTERNAL (STRTOF) (nptr, endptr, group)
{
if (num[0] >= d1)
{
/* The nominator of the number occupies fewer bits than
/* The numerator of the number occupies fewer bits than
the denominator but the one limb is bigger than the
high limb of the nominator. */
high limb of the numerator. */
n1 = 0;
n0 = num[0];
}