summaryrefslogtreecommitdiff
path: root/ccc.h
diff options
context:
space:
mode:
Diffstat (limited to 'ccc.h')
-rw-r--r--ccc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ccc.h b/ccc.h
index 475704a..3542e60 100644
--- a/ccc.h
+++ b/ccc.h
@@ -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