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

8 lines
92 B
C

#include <math.h>
#include "headers/cbrt.h"
double cbrt(double x)
{
return _cbrt(x);
}