| 403 | static inline void* WORKAROUND_malloc(size_t size) { return malloc(size); } |
| 404 | static inline void WORKAROUND_free(void* ptr) { return free(ptr); } |
| 405 | static inline void* (malloc)(size_t size) { return WORKAROUND_malloc(size); } |
| 406 | static inline void (free)(void* ptr) { return WORKAROUND_free(ptr); } |
| 407 | #else |
| 408 | static inline void* malloc(size_t size) { return std::malloc(size); } |
nothing calls this directly
no outgoing calls
no test coverage detected