| 93 | } |
| 94 | |
| 95 | static void normal_free(void* buffer, const char*, size_t) |
| 96 | { |
| 97 | PlatformSpecificFree(buffer); |
| 98 | } |
| 99 | |
| 100 | #if CPPUTEST_USE_MEM_LEAK_DETECTION |
| 101 | static void *(*malloc_fptr)(size_t size, const char* file, size_t line) = mem_leak_malloc; |
nothing calls this directly
no test coverage detected