summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_atan.c
blob: f9b605f580351a509ca5389dbbb8f0f1d437ae8f (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/atan.h"

double atan(double x)
{
  return _atan(x);
}