[PATCH] msvcr120: Add lgamma

Piotr Caban piotr.caban at gmail.com
Thu Aug 11 01:28:27 CDT 2016


Hi,

On 08/10/16 18:54, Daniel Lehman wrote:
> +/*********************************************************************
> + *      lgamma (MSVCR120.@)
> + */
> +double CDECL MSVCR120_lgamma(double x)
> +{
> +    return lgamma(x);
> +}
lgamma function is not a C89 function. It probably shouldn't be used 
without appropriate configure checks.

On the other hand there are some other non C89 functions calls in this 
file. I don't know why/if it's OK in other cases (like e.g. y0).

Thanks,
Piotr



More information about the wine-devel mailing list