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

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

static __inline double _lgamma(double x)
{
  return spu_extract(_lgammad2(spu_promote(x, 0)), 0);
}