aboutsummaryrefslogtreecommitdiffhomepage
path: root/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index 3eafa94..8f474ac 100644
--- a/ast.c
+++ b/ast.c
@@ -87,7 +87,7 @@ Type* type_array_to_ptr(Type* ty) {
return type_new_ptr(ty->base);
}
-int type_is_unsized(Type* ty) {
+BOOL type_is_unsized(Type* ty) {
return ty->kind == TypeKind_void;
}