Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sin.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d3fac8238e8be6d96ddfae6e7dbe7709303ff67 (plain)
1
2
3
4
5
6
#include "headers/sind2.h"

static __inline double _sin(double angle)
{
  return spu_extract(_sind2(spu_promote(angle, 0)), 0);
}