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

8 lines
91 B
C
Raw Normal View History

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