Skip to content

Commit c4dca1e

Browse files
authored
Add files via upload
1 parent d4077aa commit c4dca1e

25 files changed

Lines changed: 29 additions & 29 deletions

src/s_cbrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,5 @@ cbrt(double x)
114114
}
115115

116116
#if (LDBL_MANT_DIG == 53)
117-
__weak_reference_compat(cbrt, cbrtl);
117+
openlibm_weak_reference(cbrt, cbrtl);
118118
#endif

src/s_ceil.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ ceil(double x)
7373
}
7474

7575
#if LDBL_MANT_DIG == 53
76-
__weak_reference_compat(ceil, ceill);
76+
openlibm_weak_reference(ceil, ceill);
7777
#endif

src/s_cos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ cos(double x)
8585
}
8686

8787
#if (LDBL_MANT_DIG == 53)
88-
__weak_reference_compat(cos, cosl);
88+
openlibm_weak_reference(cos, cosl);
8989
#endif

src/s_cproj.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ cproj(double complex z)
4343
}
4444

4545
#if LDBL_MANT_DIG == 53
46-
__weak_reference_compat(cproj, cprojl);
46+
openlibm_weak_reference(cproj, cprojl);
4747
#endif

src/s_csqrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ csqrt(double complex z)
110110
}
111111

112112
#if LDBL_MANT_DIG == 53
113-
__weak_reference_compat(csqrt, csqrtl);
113+
openlibm_weak_reference(csqrt, csqrtl);
114114
#endif

src/s_exp2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,5 +392,5 @@ exp2(double x)
392392
}
393393

394394
#if (LDBL_MANT_DIG == 53)
395-
__weak_reference_compat(exp2, exp2l);
395+
openlibm_weak_reference(exp2, exp2l);
396396
#endif

src/s_floor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ floor(double x)
7474
}
7575

7676
#if LDBL_MANT_DIG == 53
77-
__weak_reference_compat(floor, floorl);
77+
openlibm_weak_reference(floor, floorl);
7878
#endif

src/s_fma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,5 +280,5 @@ fma(double x, double y, double z)
280280
}
281281

282282
#if (LDBL_MANT_DIG == 53)
283-
__weak_reference_compat(fma, fmal);
283+
openlibm_weak_reference(fma, fmal);
284284
#endif

src/s_frexp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ frexp(double x, int *eptr)
5252
}
5353

5454
#if (LDBL_MANT_DIG == 53)
55-
__weak_reference_compat(frexp, frexpl);
55+
openlibm_weak_reference(frexp, frexpl);
5656
#endif

src/s_isinf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ __isinfl(long double e)
6363
}
6464
#endif
6565

66-
__weak_reference_compat(__isinff, isinff);
66+
openlibm_weak_reference(__isinff, isinff);

0 commit comments

Comments
 (0)