add _DEFAULT_SOURCE wherever _BSD_SOURCE was used
[libc-test] / src / math / llroundf.c
index 780a974..0a61cf9 100644 (file)
@@ -1,9 +1,10 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
 static struct f_i t[] = {
 #include "sanity/llroundf.h"
+#include "special/llroundf.h"
 
 };
 
@@ -11,7 +12,6 @@ int main(void)
 {
        #pragma STDC FENV_ACCESS ON
        long long yi;
-       float d;
        int e, i, err = 0;
        struct f_i *p;
 
@@ -31,7 +31,7 @@ int main(void)
                        printf(" got %s\n", estr(e));
                        err++;
                }
-               if (yi != p->i) {
+               if (!(p->e&INVALID) && yi != p->i) {
                        printf("%s:%d: %s llroundf(%a) want %lld got %lld\n",
                                p->file, p->line, rstr(p->r), p->x, p->i, yi);
                        err++;