aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-24 15:06:59 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-24 15:06:59 -0400
commit5157988efa388f956d3ea8204e496baf6db11b52 (patch)
treeb1cc89f2244d21de4811a3467b4bc15f795b7019 /ast.h
parenta29d2ed6d1735d4f12dd250900785db4271edeca (diff)
Implement 'extern' functionality
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/ast.h b/ast.h
index bd7213ea..1872263c 100644
--- a/ast.h
+++ b/ast.h
@@ -194,7 +194,6 @@ struct ast_s {
struct {
ast_t *fn;
arg_ast_t *args;
- type_ast_t *extern_return_type;
} FunctionCall;
struct {
const char *name;
@@ -231,7 +230,6 @@ struct ast_s {
struct {
const char *name;
type_ast_t *type;
- bool address;
} Extern;
struct {
const char *name;