Re: math libraries

2015-02-14 Thread Luc Bourhis via Digitalmars-d
Thank you very much Ilya for this comprehensive and clear answer.

Re: math libraries

2015-02-12 Thread Ilya Yaroshenko via Digitalmars-d
Hi! 1. core.stdc.math - C math (sin(double), sinf(float), sinl(real)). This functions are linked to libm. 2. core.stdc.tgmath - C math overloads (single name for float/double/real). See also http://www.cplusplus.com/reference/ctgmath/ . This functions are link to libm. 3. core.math - Builtin ma