Skip to content

Commit 30852ca

Browse files
committed
Replace use of math.h with openlibm.h
1 parent 0e10872 commit 30852ca

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/s_cpow.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
#include <complex.h>
4848
#include <float.h>
49-
#include <math.h>
49+
#include <openlibm.h>
5050

5151
double complex
5252
cpow(double complex a, double complex z)

src/s_cpowf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*/
4646

4747
#include <complex.h>
48-
#include <math.h>
48+
#include <openlibm.h>
4949

5050
float complex
5151
cpowf(float complex a, float complex z)

src/s_cpowl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*/
4747

4848
#include <complex.h>
49-
#include <math.h>
49+
#include <openlibm.h>
5050

5151
long double complex
5252
cpowl(long double complex a, long double complex z)

0 commit comments

Comments
 (0)