aboutsummaryrefslogtreecommitdiff
path: root/src/structs.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 13:10:44 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 13:10:44 -0400
commitb033c491b8df6e6c4bc11f9941f2bba93bb9d10f (patch)
treeeaa6831a9b5b4a9372b978dd303cc595ad1894ec /src/structs.c
parent950c8a63be4cdb6bcbcc6c380d59238a36a3b932 (diff)
Remove some unused imports
Diffstat (limited to 'src/structs.c')
-rw-r--r--src/structs.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/structs.c b/src/structs.c
index 873300c5..2d71fbac 100644
--- a/src/structs.c
+++ b/src/structs.c
@@ -1,14 +1,11 @@
// Logic for compiling new struct types defined in code
-#include <ctype.h>
#include <gc.h>
-#include <stdio.h>
#include "ast.h"
#include "compile.h"
#include "environment.h"
#include "naming.h"
#include "stdlib/text.h"
-#include "stdlib/util.h"
#include "typecheck.h"
Text_t compile_struct_typeinfo(env_t *env, type_t *t, const char *name, arg_ast_t *fields, bool is_secret, bool is_opaque)