summaryrefslogtreecommitdiffstats
path: root/compile.h
diff options
context:
space:
mode:
Diffstat (limited to 'compile.h')
-rw-r--r--compile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compile.h b/compile.h
index 150eef28..f982e3bf 100644
--- a/compile.h
+++ b/compile.h
@@ -7,6 +7,7 @@
struct bytecode;
struct symbol_table;
+struct cfunction;
struct inst;
typedef struct inst inst;
@@ -41,7 +42,7 @@ block gen_or(block a, block b);
block gen_cond(block cond, block iftrue, block iffalse);
-block gen_cbinding(struct symbol_table* functions, block b);
+block gen_cbinding(const struct cfunction* functions, int nfunctions, block b);
void block_append(block* b, block b2);
block block_join(block a, block b);