beket's projects
/
mathlib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
97cdf11
)
math/t_nextafter: Fix typo
author
stathis <stathis@solaris.(none)>
Thu, 21 Apr 2011 15:59:35 +0000 (18:59 +0300)
committer
stathis <stathis@solaris.(none)>
Thu, 21 Apr 2011 15:59:35 +0000 (18:59 +0300)
math/t_nextafter.c
patch
|
blob
|
blame
|
history
diff --git
a/math/t_nextafter.c
b/math/t_nextafter.c
index
cf6ee0e
..
d5abff9
100644
(file)
--- a/
math/t_nextafter.c
+++ b/
math/t_nextafter.c
@@
-262,9
+262,9
@@
ATF_TC_BODY(test_nextafter5, tc)
/* long double */
#ifdef HAVE_NEXTAFTERL
- ldy = nextafterfl(-0.0, +0.0);
+ ldy = nextafterl(-0.0, +0.0);
ATF_CHECK(iszero(ldy) && signbit(ldy) == 0);
- ldy = nextafterfl(+0.0, -0.0);
+ ldy = nextafterl(+0.0, -0.0);
ATF_CHECK(iszero(ldy) && signbit(ldy) == 1);
#endif
}