From afbf8da2fe274cd49ca16fe2e8c7fecfad0e2ab9 Mon Sep 17 00:00:00 2001 From: Bourbouh <bourbouhh@gmail.com> Date: Tue, 20 Jun 2017 13:51:39 -0700 Subject: [PATCH] add tan function in math.lusi --- include/math.lusi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/math.lusi b/include/math.lusi index 8033408b..68b2d382 100644 --- a/include/math.lusi +++ b/include/math.lusi @@ -14,4 +14,5 @@ function fabs (x: real) returns (y: real) prototype C lib m; function pow (x:real; n: real) returns (y: real) prototype C lib m; function sin (x: real) returns (y: real) prototype C lib m; function sinh (x: real) returns (y: real) prototype C lib m; -function sqrt (x: real) returns (y: real) prototype C lib m; \ No newline at end of file +function sqrt (x: real) returns (y: real) prototype C lib m; +function tan (x: real) returns (y: real) prototype C lib m; -- GitLab