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