#define malloc mt_malloc
#define calloc mt_calloc
#define realloc mt_realloc
#define free mt_free

Example 2: Redefining memory-allocation functions as macros.

Back to Article