提交 59d88940 编写于 作者: R Rich Felker

move lgamma-related internal declarations to libm.h

上级 aee11e5a
......@@ -192,4 +192,8 @@ long double __tanl(long double, long double, int);
long double __polevll(long double, const long double *, int);
long double __p1evll(long double, const long double *, int);
extern int __signgam;
double __lgamma_r(double, int *);
float __lgammaf_r(float, int *);
#endif
#include <math.h>
extern int __signgam;
double __lgamma_r(double, int *);
#include "libm.h"
double lgamma(double x)
{
......
#include <math.h>
extern int __signgam;
float __lgammaf_r(float, int *);
#include "libm.h"
float lgammaf(float x)
{
......
......@@ -90,8 +90,6 @@
#include "libc.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
double __lgamma_r(double x, int *sg);
long double __lgammal_r(long double x, int *sg)
{
return __lgamma_r(x, sg);
......@@ -342,16 +340,12 @@ long double __lgammal_r(long double x, int *sg) {
}
#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
// TODO: broken implementation to make things compile
double __lgamma_r(double x, int *sg);
long double __lgammal_r(long double x, int *sg)
{
return __lgamma_r(x, sg);
}
#endif
extern int __signgam;
long double lgammal(long double x)
{
return __lgammal_r(x, &__signgam);
......
#include <math.h>
#include "libm.h"
#include "libc.h"
int __signgam = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册