Raymond Toy pushed to branch issue-484-use-openlibm at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/lisp/irrat.c
    ... ... @@ -9,8 +9,8 @@
    9 9
     #include "internals.h"
    
    10 10
     #include "fdlibm.h"
    
    11 11
     
    
    12
    -#include "openlibm_math.h"
    
    13 12
     #ifdef FEATURE_CORE_MATH
    
    13
    +#include <math.h>
    
    14 14
     extern double cr_sin(double);
    
    15 15
     extern double cr_cos(double);
    
    16 16
     extern double cr_tan(double);
    
    ... ... @@ -55,18 +55,7 @@ extern float cr_log1pf(float);
    55 55
     extern float cr_expm1f(float);
    
    56 56
     extern void cr_sincosf(float, float *, float *);
    
    57 57
     #else
    
    58
    -extern float __ieee754_atan2f(float y, float x);
    
    59
    -extern float __ieee754_asinf(float x);
    
    60
    -extern float __ieee754_acosf(float x);
    
    61
    -extern float __ieee754_acoshf(float x);
    
    62
    -extern float __ieee754_atanhf(float x);
    
    63
    -extern float __ieee754_sinhf(float x);
    
    64
    -extern float __ieee754_coshf(float x);
    
    65
    -extern float __ieee754_tanhf(float x);
    
    66
    -extern float __ieee754_expf(float x);
    
    67
    -extern float __ieee754_log10f(float x);
    
    68
    -extern float __ieee754_hypotf(float x, float y);
    
    69
    -extern float __ieee754_expf(float x);
    
    58
    +#include "openlibm_math.h"
    
    70 59
     #endif
    
    71 60
     
    
    72 61