| 172 | } |
| 173 | |
| 174 | void memMove(void* _dst, const void* _src, size_t _numBytes) |
| 175 | { |
| 176 | #if BX_CRT_NONE |
| 177 | memMoveRef(_dst, _src, _numBytes); |
| 178 | #else |
| 179 | ::memmove(_dst, _src, _numBytes); |
| 180 | #endif // BX_CRT_NONE |
| 181 | } |
| 182 | |
| 183 | void memMove( |
| 184 | void* _dst |