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

8 lines
90 B
C

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