blob: 3542e60fcbc7e2a1547a6e85578a44a4ff44bb02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|