mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-29 13:03:42 +01:00
add exported names for ldexp
This commit is contained in:
parent
3fda504f47
commit
1b9b759b48
3 changed files with 6 additions and 2 deletions
|
@ -39,4 +39,5 @@ ENTRY(scalbn)
|
||||||
ret
|
ret
|
||||||
END(scalbn)
|
END(scalbn)
|
||||||
|
|
||||||
|
.globl CNAME(ldexp)
|
||||||
|
.set CNAME(ldexp),CNAME(scalbn)
|
||||||
|
|
|
@ -15,4 +15,5 @@ ENTRY(scalbn)
|
||||||
ret
|
ret
|
||||||
END(scalbn)
|
END(scalbn)
|
||||||
|
|
||||||
|
.globl CNAME(ldexp)
|
||||||
|
.set CNAME(ldexp),CNAME(scalbn)
|
||||||
|
|
|
@ -61,3 +61,5 @@ scalbn (double x, int n)
|
||||||
__weak_reference(scalbn, ldexpl);
|
__weak_reference(scalbn, ldexpl);
|
||||||
__weak_reference(scalbn, scalbnl);
|
__weak_reference(scalbn, scalbnl);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
__strong_reference(scalbn, ldexp);
|
||||||
|
|
Loading…
Reference in a new issue