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