diff options
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1439,6 +1439,11 @@ val loga(val num) return flo(log(c_flo(to_float(lit("log"), num)))); } +val logten(val num) +{ + return flo(log10(c_flo(to_float(lit("log"), num)))); +} + val expo(val num) { return flo(exp(c_flo(to_float(lit("exp"), num)))); |