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

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

static __inline double _tan(double angle)
{
  return spu_extract(_tand2(spu_promote(angle, 0)), 0);
}