| 402 | // Work around malloc/free being special macros: |
| 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 |