7 lines
85 B
C
7 lines
85 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
float ldexpf(float x, int n)
|
||
|
{
|
||
|
return scalbnf(x, n);
|
||
|
}
|