libc/newlib/libm/machine/spu/sf_cbrt.c

8 lines
93 B
C

#include <math.h>
#include "headers/cbrtf.h"
float cbrtf(float x)
{
return _cbrtf(x);
}