Retro68/gcc/newlib/libm/machine/spu/sf_ldexp.c

8 lines
110 B
C
Raw Normal View History

#include <math.h>
#include "headers/ldexpf.h"
float ldexpf(float x, int exp)
{
return _ldexpf(x, exp);
}