| 154 | } |
| 155 | |
| 156 | void fx_Math_asinh(txMachine* the) |
| 157 | { |
| 158 | mxNanResultIfNoArg; |
| 159 | fxToNumber(the, mxArgv(0)); |
| 160 | mxResult->kind = XS_NUMBER_KIND; |
| 161 | mxResult->value.number = c_asinh(mxArgv(0)->value.number); |
| 162 | } |
| 163 | |
| 164 | void fx_Math_atan(txMachine* the) |
| 165 | { |
nothing calls this directly
no test coverage detected