X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fnexttowardf.c;h=b026bd10d153f8f961c50cd6c397af9db13fb18e;hb=453836db72eb1a5b188c57730bf73dbf56653e71;hp=9e4b18092a7dccf5e1258b07b592e014b9b96ee2;hpb=f3f0ff4782fc90bd0f3e48fd541ee431f76aaed1;p=libc-test diff --git a/src/math/nexttowardf.c b/src/math/nexttowardf.c index 9e4b180..b026bd1 100644 --- a/src/math/nexttowardf.c +++ b/src/math/nexttowardf.c @@ -1,6 +1,6 @@ #include #include -#include "util.h" +#include "mtest.h" // TODO: separate ldbl dir static struct ll_l t[] = { @@ -18,7 +18,7 @@ static struct ll_l t[] = { int main(void) { #pragma STDC FENV_ACCESS ON - long double y; + float y; float d; int e, i, err = 0; struct ll_l *p; @@ -39,9 +39,9 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - d = ulperrl(y, p->y, p->dy); + d = ulperrf(y, p->y, p->dy); if (!checkcr(y, p->y, p->r)) { - printf("%s:%d: %s nexttowardf(%La,%La) want %La got %La ulperr %.3f = %a + %a\n", + printf("%s:%d: %s nexttowardf(%La,%La) want %La got %a ulperr %.3f = %a + %a\n", p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy); err++; }