| 122 | } |
| 123 | |
| 124 | void fx_Math_abs(txMachine* the) |
| 125 | { |
| 126 | mxNanResultIfNoArg; |
| 127 | fxToNumber(the, mxArgv(0)); |
| 128 | mxResult->kind = XS_NUMBER_KIND; |
| 129 | mxResult->value.number = c_fabs(mxArgv(0)->value.number); |
| 130 | } |
| 131 | |
| 132 | void fx_Math_acos(txMachine* the) |
| 133 | { |
nothing calls this directly
no test coverage detected