Skip to content

Commit 1b9b759

Browse files
committed
add exported names for ldexp
1 parent 3fda504 commit 1b9b759

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

amd64/s_scalbn.S

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ ENTRY(scalbn)
3939
ret
4040
END(scalbn)
4141

42-
42+
.globl CNAME(ldexp)
43+
.set CNAME(ldexp),CNAME(scalbn)

i387/s_scalbn.S

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ ENTRY(scalbn)
1515
ret
1616
END(scalbn)
1717

18-
18+
.globl CNAME(ldexp)
19+
.set CNAME(ldexp),CNAME(scalbn)

src/s_scalbn.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,5 @@ scalbn (double x, int n)
6161
__weak_reference(scalbn, ldexpl);
6262
__weak_reference(scalbn, scalbnl);
6363
#endif
64+
65+
__strong_reference(scalbn, ldexp);

0 commit comments

Comments
 (0)