Commit 28a54059 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcr120: Add lgamma.

parent fcd0f6b0
......@@ -16935,6 +16935,8 @@ for ac_func in \
erff \
exp2 \
exp2f \
lgamma \
lgammaf \
llrint \
llrintf \
llround \
......
......@@ -2527,6 +2527,8 @@ AC_CHECK_FUNCS(\
erff \
exp2 \
exp2f \
lgamma \
lgammaf \
llrint \
llrintf \
llround \
......
......@@ -258,9 +258,9 @@
@ stub ilogbf
@ stub ilogbl
@ cdecl ldexp(double long) ucrtbase.ldexp
@ stub lgamma
@ stub lgammaf
@ stub lgammal
@ cdecl lgamma(double) ucrtbase.lgamma
@ cdecl lgammaf(float) ucrtbase.lgammaf
@ cdecl lgammal(double) ucrtbase.lgammal
@ cdecl -ret64 llrint(double) ucrtbase.llrint
@ cdecl -ret64 llrintf(float) ucrtbase.llrintf
@ cdecl -ret64 llrintl(double) ucrtbase.llrintl
......
......@@ -2243,9 +2243,9 @@
@ cdecl labs(long) MSVCRT_labs
@ cdecl ldexp(double long) MSVCRT_ldexp
@ cdecl ldiv(long long) MSVCRT_ldiv
@ stub lgamma
@ stub lgammaf
@ stub lgammal
@ cdecl lgamma(double) MSVCR120_lgamma
@ cdecl lgammaf(float) MSVCR120_lgammaf
@ cdecl lgammal(double) MSVCR120_lgammal
@ cdecl -ret64 llabs(int64) MSVCRT_llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) MSVCR120_llrint
......
......@@ -1906,9 +1906,9 @@
@ cdecl labs(long) msvcr120.labs
@ cdecl ldexp(double long) msvcr120.ldexp
@ cdecl ldiv(long long) msvcr120.ldiv
@ stub lgamma
@ stub lgammaf
@ stub lgammal
@ cdecl lgamma(double) msvcr120.lgamma
@ cdecl lgammaf(float) msvcr120.lgammaf
@ cdecl lgammal(double) msvcr120.lgammal
@ cdecl -ret64 llabs(int64) msvcr120.llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) msvcr120.llrint
......
......@@ -2843,3 +2843,37 @@ LDOUBLE CDECL MSVCR120_remainderl(LDOUBLE x, LDOUBLE y)
{
return MSVCR120_remainder(x, y);
}
/*********************************************************************
* lgamma (MSVCR120.@)
*/
double CDECL MSVCR120_lgamma(double x)
{
#ifdef HAVE_LGAMMA
return lgamma(x);
#else
FIXME( "not implemented\n" );
return 0.0;
#endif
}
/*********************************************************************
* lgammaf (MSVCR120.@)
*/
float CDECL MSVCR120_lgammaf(float x)
{
#ifdef HAVE_LGAMMAF
return lgammaf(x);
#else
FIXME( "not implemented\n" );
return 0.0f;
#endif
}
/*********************************************************************
* lgammal (MSVCR120.@)
*/
LDOUBLE CDECL MSVCR120_lgammal(LDOUBLE x)
{
return MSVCR120_lgamma(x);
}
......@@ -2377,9 +2377,9 @@
@ cdecl labs(long) MSVCRT_labs
@ cdecl ldexp(double long) MSVCRT_ldexp
@ cdecl ldiv(long long) MSVCRT_ldiv
@ stub lgamma
@ stub lgammaf
@ stub lgammal
@ cdecl lgamma(double) MSVCR120_lgamma
@ cdecl lgammaf(float) MSVCR120_lgammaf
@ cdecl lgammal(double) MSVCR120_lgammal
@ cdecl -ret64 llabs(int64) MSVCRT_llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) MSVCR120_llrint
......
......@@ -351,6 +351,12 @@
/* Define to 1 if you have the `ldap_parse_vlv_control' function. */
#undef HAVE_LDAP_PARSE_VLV_CONTROL
/* Define to 1 if you have the `lgamma' function. */
#undef HAVE_LGAMMA
/* Define to 1 if you have the `lgammaf' function. */
#undef HAVE_LGAMMAF
/* Define to 1 if you have the `gettextpo' library (-lgettextpo). */
#undef HAVE_LIBGETTEXTPO
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment