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

float sinf(float angle)
{
  return _sinf(angle);
}