8 lines
110 B
C
8 lines
110 B
C
|
#include <math.h>
|
||
|
#include "headers/ldexpf.h"
|
||
|
|
||
|
float ldexpf(float x, int exp)
|
||
|
{
|
||
|
return _ldexpf(x, exp);
|
||
|
}
|