index
:
box64
this commit
fix/trace
main
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
external
/
musl
/
ldexp.c
blob: 2b49bd964da0435e9de17ec47ec9e0f36ba2ce9f (
plain
) (
blame
)
1
2
3
4
5
6
#include
<math.h>
double
__cdecl
ldexp
(
double
x
,
int
n
)
{
return
scalbn
(
x
,
n
);
}