Răsfoiți Sursa

Replace use of math.h with openlibm.h

Viral B. Shah 11 ani în urmă
părinte
comite
30852cae3b
3 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 1 1
      src/s_cpow.c
  2. 1 1
      src/s_cpowf.c
  3. 1 1
      src/s_cpowl.c

+ 1 - 1
src/s_cpow.c

@@ -46,7 +46,7 @@
 
 #include <complex.h>
 #include <float.h>
-#include <math.h>
+#include <openlibm.h>
 
 double complex
 cpow(double complex a, double complex z)

+ 1 - 1
src/s_cpowf.c

@@ -45,7 +45,7 @@
  */
 
 #include <complex.h>
-#include <math.h>
+#include <openlibm.h>
 
 float complex
 cpowf(float complex a, float complex z)

+ 1 - 1
src/s_cpowl.c

@@ -46,7 +46,7 @@
  */
 
 #include <complex.h>
-#include <math.h>
+#include <openlibm.h>
 
 long double complex
 cpowl(long double complex a, long double complex z)