Implement missing hyperbolic Math functions from ES6 (#3670)
Math.cosh, Math.sinh, Math.tanh C implementation ported from fdlibm. Part of Issue #3568 JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
@@ -88,6 +88,10 @@ double cos (double x);
|
||||
double sin (double x);
|
||||
double tan (double x);
|
||||
|
||||
double cosh (double x);
|
||||
double sinh (double x);
|
||||
double tanh (double x);
|
||||
|
||||
double acosh (double x);
|
||||
double asinh (double x);
|
||||
double atanh (double x);
|
||||
|
||||
Reference in New Issue
Block a user