I replaced several macros that were all calling malloc, realloc and free, with no benefit: they did none other than calling the relevant function, like:
#define MALLOC(x) malloc(x)
I tested them lightly by opening, editing and saving a file. Please review and let me know your comment.
Hi Alessandro,
I replaced several macros that were all calling malloc, realloc and free, with no benefit: they did none other than calling the relevant function, like:
#define MALLOC(x) malloc(x)
I tested them lightly by opening, editing and saving a file. Please review and let me know your comment.