Skip to content
Snippets Groups Projects
Commit afbf8da2 authored by Hamza Bourbouh's avatar Hamza Bourbouh
Browse files

add tan function in math.lusi

parent a6974c82
No related branches found
No related tags found
No related merge requests found
...@@ -14,4 +14,5 @@ function fabs (x: real) returns (y: real) prototype C lib m; ...@@ -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 pow (x:real; n: real) returns (y: real) prototype C lib m;
function sin (x: 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 sinh (x: real) returns (y: real) prototype C lib m;
function sqrt (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 tan (x: real) returns (y: real) prototype C lib m;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment