summaryrefslogtreecommitdiff
path: root/ccc.h
blob: 37bcbf10b916feba3597180e62e3b3fd0954ca9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 long long sintegral_t;
typedef double floating_t;

void* ccc_alloc(integral_t sz);

#endif