Initial import
This commit is contained in:
6
libc/math/ldexp.c
Normal file
6
libc/math/ldexp.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "libc/math/math.h"
|
||||
|
||||
double ldexp(double x, int n)
|
||||
{
|
||||
return scalbn(x, n);
|
||||
}
|
||||
Reference in New Issue
Block a user