#include #include #define MALLOC(x,y) { y=malloc(x); if (!y) abort(); } int main(int argc, char * argv[]) { void * p = NULL; MALLOC(3,p); return EXIT_SUCCESS; }