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

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

static __inline double _cos(double angle)
{
  return spu_extract(_cosd2(spu_promote(angle, 0)), 0);
}