| 88 | } |
| 89 | |
| 90 | static void* normal_realloc(void* memory, size_t size, const char*, size_t) |
| 91 | { |
| 92 | return PlatformSpecificRealloc(memory, size); |
| 93 | } |
| 94 | |
| 95 | static void normal_free(void* buffer, const char*, size_t) |
| 96 | { |
nothing calls this directly
no test coverage detected