fix pow(+-0, inf) case http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1515.pdf
[libc-test] / src / math / atan2l.c
index d6d5ae4..f07314c 100644 (file)
@@ -1,14 +1,16 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
 static struct ll_l t[] = {
 #if LDBL_MANT_DIG == 53
 #include "ucb/atan2.h"
 #include "sanity/atan2.h"
+#include "special/atan2.h"
 
 #elif LDBL_MANT_DIG == 64
 #include "sanity/atan2l.h"
+#include "special/atan2l.h"
 
 #endif
 };