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

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

double lgamma(double x)
{
  return _lgamma(x);
}