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

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

static __inline double _asinh(double x)
{
  return spu_extract(_asinhd2(spu_promote(x, 0)), 0);
}