#ifndef CURSETREE_ALLOC_H #define CURSETREE_ALLOC_H #include #define CT_ALLOC(type, count) ((type *)malloc(sizeof(type) * count)) #endif /* CURSETREE_ALLOC_H */