| 130 | } |
| 131 | |
| 132 | void fx_Math_acos(txMachine* the) |
| 133 | { |
| 134 | mxNanResultIfNoArg; |
| 135 | fxToNumber(the, mxArgv(0)); |
| 136 | mxResult->kind = XS_NUMBER_KIND; |
| 137 | mxResult->value.number = c_acos(mxArgv(0)->value.number); |
| 138 | } |
| 139 | |
| 140 | void fx_Math_acosh(txMachine* the) |
| 141 | { |
nothing calls this directly
no test coverage detected