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

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

static __inline double _atan(double x)
{
  return spu_extract(_atand2(spu_promote(x, 0)), 0);
}