| 138 | } |
| 139 | |
| 140 | void fx_Math_acosh(txMachine* the) |
| 141 | { |
| 142 | mxNanResultIfNoArg; |
| 143 | fxToNumber(the, mxArgv(0)); |
| 144 | mxResult->kind = XS_NUMBER_KIND; |
| 145 | mxResult->value.number = c_acosh(mxArgv(0)->value.number); |
| 146 | } |
| 147 | |
| 148 | void fx_Math_asin(txMachine* the) |
| 149 | { |
nothing calls this directly
no test coverage detected