This website requires JavaScript.
Explore
Help
Sign In
status-im
/
status-go
mirror of
https://github.com/status-im/status-go.git
Watch
2
Star
0
Fork
You've already forked status-go
0
Code
Issues
Projects
Releases
Wiki
Activity
7623f68679
status-go
/
vendor
/
modernc.org
/
libc
/
musl
/
src
/
math
/
ldexp.c
7 lines
75 B
C
Raw
Blame
History
#
include
<math.h>
double
ldexp
(
double
x
,
int
n
)
{
return
scalbn
(
x
,
n
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink