[PATCH 3/4] msvcrt: Implement the tgamma functions

Piotr Caban piotr.caban at gmail.com
Thu Aug 1 08:57:57 CDT 2019


Hi Martin,

On 7/30/19 11:08 PM, Martin Storsjo wrote:
> +/*********************************************************************
> + *      tgamma (MSVCR120.@)
> + */
> +double CDECL MSVCR120_tgamma(double x)
> +{
> +#ifdef HAVE_TGAMMA
> +    return tgamma(x);
> +#else
> +    FIXME( "not implemented\n" );
> +    return 0.0;
> +#endif
> +}
Isn't the function supposed to set error on invalid arguments?

Thanks,
Piotr



More information about the wine-devel mailing list