Skip to content

Commit f835657

Browse files
committed
Remove checks against header guards.
It seems that this header conditionally tests whether <complex.h> is included, as the 'complex' keyword is otherwise not available. This version of math_private.h includes <complex.h> unconditionally, so there is no need to test against this.
1 parent 71f60ec commit f835657

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/math_private.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,7 @@ double __kernel_sin(double,double,int);
333333
double __kernel_cos(double,double);
334334
double __kernel_tan(double,double,int);
335335
double __ldexp_exp(double,int);
336-
#ifdef _COMPLEX_H
337336
double complex __ldexp_cexp(double complex,int);
338-
#endif
339337

340338
/* float precision kernel functions */
341339
#ifdef INLINE_REM_PIO2F
@@ -355,9 +353,7 @@ __inline
355353
#endif
356354
float __kernel_tandf(double,int);
357355
float __ldexp_expf(float,int);
358-
#ifdef _COMPLEX_H
359356
float complex __ldexp_cexpf(float complex,int);
360-
#endif
361357

362358
/* long double precision kernel functions */
363359
long double __kernel_sinl(long double, long double, int);

0 commit comments

Comments
 (0)