diff options
Diffstat (limited to 'ccc.h')
| -rw-r--r-- | ccc.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,8 +2,11 @@ #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 |
