mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 02:40:08 +00:00
Update.
1999-01-31 Ulrich Drepper <drepper@cygnus.com> * math/libm-test.c (fdim_test): Fix typo in message. Patch by Paul Kimoto <kimoto@spacenet.tn.cornell.edu>.
This commit is contained in:
parent
28fd0f23c1
commit
5b3ce86c1c
@ -1,3 +1,8 @@
|
||||
1999-01-31 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* math/libm-test.c (fdim_test): Fix typo in message.
|
||||
Patch by Paul Kimoto <kimoto@spacenet.tn.cornell.edu>.
|
||||
|
||||
1999-01-31 Philip Blundell <philb@gnu.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: If the kernel
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
|
||||
|
||||
@ -2178,7 +2178,7 @@ fdim_test (void)
|
||||
check ("fdim (+0, +0) = +0", FUNC(fdim) (0, 0), 0);
|
||||
check ("fdim (9, 0) = 9", FUNC(fdim) (9, 0), 9);
|
||||
check ("fdim (0, 9) = 0", FUNC(fdim) (0, 9), 0);
|
||||
check ("fdim (-9, 0) = 9", FUNC(fdim) (-9, 0), 0);
|
||||
check ("fdim (-9, 0) = 0", FUNC(fdim) (-9, 0), 0);
|
||||
check ("fdim (0, -9) = 9", FUNC(fdim) (0, -9), 9);
|
||||
|
||||
check_isinfp ("fdim (+inf, 9) = +inf", FUNC(fdim) (plus_infty, 9));
|
||||
|
Loading…
Reference in New Issue
Block a user