fix typo in eval_expr.y: add tan() function (was exp() due to copy/paste error)
This commit is contained in:
parent
e37aed78c9
commit
c87b6aeb2e
|
|
@ -46,7 +46,7 @@ struct fn fn_array[]
|
|||
{"int" , toint, 0},
|
||||
{"sin" , sin, 0},
|
||||
{"cos" , cos, 0},
|
||||
{"exp" , exp, 0},
|
||||
{"tan" , tan, 0},
|
||||
{"asin" , asin, 0},
|
||||
{"acos" , acos, 0},
|
||||
{"atan" , atan, 0},
|
||||
|
|
|
|||
Loading…
Reference in New Issue