| 83 | } |
| 84 | |
| 85 | XN_C_API void xnOSFree(const void* pMemBlock) |
| 86 | { |
| 87 | // Note: No need to check if pMemBlock is NULL because free is guaranteed to handle this case correctly. |
| 88 | |
| 89 | // Free the requested memory block |
| 90 | free ((void*)pMemBlock); |
| 91 | } |
| 92 | |
| 93 | XN_C_API void xnOSFreeAligned(const void* pMemBlock) |
| 94 | { |
no outgoing calls
no test coverage detected