#ifndef CCC_H #define CCC_H #define CCC_PANIC { perror("ccc"); exit(1); } #define ARRAY_SZ(x) (sizeof(x) / sizeof(x[0])) typedef unsigned long long integral_t; typedef double floating_t; void* ccc_alloc(integral_t sz); #endif