This website requires JavaScript.
Explore
Help
Sign In
fluencelabs
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
https://github.com/fluencelabs/musl
synced
2025-06-11 14:01:34 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
Files
9b6899f2c5cec70af6cea80ead7ba98fd2366ce9
musl
/
src
/
math
/
ldexp.c
7 lines
75 B
C
Raw
Normal View
History
Unescape
Escape
remove libm.h includes when math.h and float.h are enough
2012-03-13 19:51:14 +01:00
#
include
<math.h>
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
double
ldexp
(
double
x
,
int
n
)
{
return
scalbn
(
x
,
n
)
;
}
Reference in New Issue
Copy Permalink