| 146 | } |
| 147 | |
| 148 | void fx_Math_asin(txMachine* the) |
| 149 | { |
| 150 | mxNanResultIfNoArg; |
| 151 | fxToNumber(the, mxArgv(0)); |
| 152 | mxResult->kind = XS_NUMBER_KIND; |
| 153 | mxResult->value.number = c_asin(mxArgv(0)->value.number); |
| 154 | } |
| 155 | |
| 156 | void fx_Math_asinh(txMachine* the) |
| 157 | { |
nothing calls this directly
no test coverage detected