Re: [PATCH 8/9] msvcr120: Add expm1.
12 Jul
2017
12 Jul
'17
2:03 p.m.
On 07/10/17 06:55, Alex Henrie wrote:
+float CDECL MSVCR120_expm1f(float x) +{ +#ifdef HAVE_EXPM1F + return expm1f(x); +#else + return exp(x) - 1; +#endif +} Please set errno on invalid arguments.
Thanks, Piotr
3165
Age (days ago)
3165
Last active (days ago)
0 comments
1 participants
participants (1)
-
Piotr Caban