mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
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.
This commit is contained in:
parent
71f60ec632
commit
f835657bd8
1 changed files with 0 additions and 4 deletions
|
@ -333,9 +333,7 @@ double __kernel_sin(double,double,int);
|
||||||
double __kernel_cos(double,double);
|
double __kernel_cos(double,double);
|
||||||
double __kernel_tan(double,double,int);
|
double __kernel_tan(double,double,int);
|
||||||
double __ldexp_exp(double,int);
|
double __ldexp_exp(double,int);
|
||||||
#ifdef _COMPLEX_H
|
|
||||||
double complex __ldexp_cexp(double complex,int);
|
double complex __ldexp_cexp(double complex,int);
|
||||||
#endif
|
|
||||||
|
|
||||||
/* float precision kernel functions */
|
/* float precision kernel functions */
|
||||||
#ifdef INLINE_REM_PIO2F
|
#ifdef INLINE_REM_PIO2F
|
||||||
|
@ -355,9 +353,7 @@ __inline
|
||||||
#endif
|
#endif
|
||||||
float __kernel_tandf(double,int);
|
float __kernel_tandf(double,int);
|
||||||
float __ldexp_expf(float,int);
|
float __ldexp_expf(float,int);
|
||||||
#ifdef _COMPLEX_H
|
|
||||||
float complex __ldexp_cexpf(float complex,int);
|
float complex __ldexp_cexpf(float complex,int);
|
||||||
#endif
|
|
||||||
|
|
||||||
/* long double precision kernel functions */
|
/* long double precision kernel functions */
|
||||||
long double __kernel_sinl(long double, long double, int);
|
long double __kernel_sinl(long double, long double, int);
|
||||||
|
|
Loading…
Reference in a new issue