summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/headers/atan2.h
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);
}