fix typo in eval_expr.y: add tan() function (was exp() due to copy/paste error)

This commit is contained in:
stefan schippers 2025-09-11 09:02:28 +02:00
parent e37aed78c9
commit c87b6aeb2e
1 changed files with 1 additions and 1 deletions

View File

@ -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},