add _DEFAULT_SOURCE wherever _BSD_SOURCE was used
[libc-test] / src / math / ldexpf.c
index 9fb870f..135e957 100644 (file)
@@ -1,6 +1,6 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
 static struct fi_f t[] = {
 #include "sanity/ldexpf.h"
@@ -11,7 +11,7 @@ static struct fi_f t[] = {
 int main(void)
 {
        #pragma STDC FENV_ACCESS ON
-       double y;
+       float y;
        float d;
        int e, i, err = 0;
        struct fi_f *p;
@@ -26,7 +26,7 @@ int main(void)
                y = ldexpf(p->x, p->i);
                e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
 
-               if (!checkexcept(e, p->e, p->r)) {
+               if (!checkexceptall(e, p->e, p->r)) {
                        printf("%s:%d: bad fp exception: %s ldexpf(%a, %lld)=%a, want %s",
                                p->file, p->line, rstr(p->r), p->x, p->i, p->y, estr(p->e));
                        printf(" got %s\n", estr(e));