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

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

static __inline double _expm1(double x)
{
  return spu_extract(_expm1d2(spu_promote(x, 0)), 0);
}