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

8 lines
90 B
C

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