| 83 | #endif |
| 84 | |
| 85 | static void* normal_malloc(size_t size, const char*, size_t) |
| 86 | { |
| 87 | return PlatformSpecificMalloc(size); |
| 88 | } |
| 89 | |
| 90 | static void* normal_realloc(void* memory, size_t size, const char*, size_t) |
| 91 | { |
nothing calls this directly
no test coverage detected