#include<stdlib.h> #define malloc #define MALLOC(num,type) (type *)alloc( (num) * sizeof(type) ) extern void *alloc(size_t size);
Last updated 5 years ago
Was this helpful?