1 Aug
2019
1 Aug
'19
1:57 p.m.
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