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

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

static __inline double _atanh(double x)
{
  return spu_extract(_atanhd2(spu_promote(x, 0)), 0);
}