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

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

static __inline double _erf(double x)
{
  return spu_extract(_erfd2(spu_promote(x, 0)), 0);
}