File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 19
19
#include <openlibm_complex.h>
20
20
#include <openlibm_math.h>
21
21
22
+ #include "math_private.h"
23
+
22
24
double
23
25
cabs (double complex z )
24
26
{
25
27
return hypot (__real__ z , __imag__ z );
26
28
}
27
29
28
30
#if LDBL_MANT_DIG == DBL_MANT_DIG
29
- __strong_alias ( cabsl , cabs );
31
+ openlibm_strong_reference ( cabs , cabsl );
30
32
#endif /* LDBL_MANT_DIG == DBL_MANT_DIG */
Original file line number Diff line number Diff line change 53
53
#include <openlibm_complex.h>
54
54
#include <openlibm_math.h>
55
55
56
+ #include "math_private.h"
57
+
56
58
/* calculate cosh and sinh */
57
59
58
60
static void
@@ -85,5 +87,5 @@ ccos(double complex z)
85
87
}
86
88
87
89
#if LDBL_MANT_DIG == DBL_MANT_DIG
88
- __strong_alias ( ccosl , ccos );
90
+ openlibm_strong_reference ( ccos , ccosl );
89
91
#endif /* LDBL_MANT_DIG == DBL_MANT_DIG */
Original file line number Diff line number Diff line change 55
55
#include <openlibm_complex.h>
56
56
#include <openlibm_math.h>
57
57
58
+ #include "math_private.h"
59
+
58
60
/* calculate cosh and sinh */
59
61
60
62
static void
@@ -87,5 +89,5 @@ csin(double complex z)
87
89
}
88
90
89
91
#if LDBL_MANT_DIG == DBL_MANT_DIG
90
- __strong_alias ( csinl , csin );
92
+ openlibm_strong_reference ( csin , csinl );
91
93
#endif /* LDBL_MANT_DIG == DBL_MANT_DIG */
Original file line number Diff line number Diff line change 60
60
#include <openlibm_complex.h>
61
61
#include <openlibm_math.h>
62
62
63
+ #include "math_private.h"
64
+
63
65
#define MACHEP 1.1e-16
64
66
#define MAXNUM 1.0e308
65
67
@@ -153,5 +155,5 @@ ctan(double complex z)
153
155
}
154
156
155
157
#if LDBL_MANT_DIG == DBL_MANT_DIG
156
- __strong_alias ( ctanl , ctan );
158
+ openlibm_strong_reference ( ctan , ctanl );
157
159
#endif /* LDBL_MANT_DIG == DBL_MANT_DIG */
You can’t perform that action at this time.
0 commit comments