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

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

static __inline double _exp(double x)
{
  return spu_extract(_expd2(spu_promote(x, 0)), 0);
}