mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-04 07:58:21 +00:00
7 lines
85 B
C
7 lines
85 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
double ldexp(double x, int n)
|
||
|
{
|
||
|
return scalbn(x, n);
|
||
|
}
|