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

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

static __inline double _atan2(double y, double x)
{
  return spu_extract(_atan2d2(spu_promote(y, 0), spu_promote(x, 0)), 0);
}