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

double tan(double angle)
{
  return _tan(angle);
}