amagnasco / xwpe

Upload of an abandoned ncurses-based programming environment
http://www.identicalsoftware.com/xwpe/
GNU General Public License v2.0
31 stars 7 forks source link

Replace defines #11

Closed gbonnema closed 7 years ago

gbonnema commented 7 years ago

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.