diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:43:34 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:43:34 -0400 |
| commit | 3e2c911ce260907e3f8f4a4278a7c0ec4793e78a (patch) | |
| tree | 93a3d7a8bb469df926e4407ac996aa606692039f /src/parse | |
| parent | 55479cbf9e4a8f36afe41d84df687f05fc7661f0 (diff) | |
First pass at formatter
Diffstat (limited to 'src/parse')
| -rw-r--r-- | src/parse/context.c | 2 | ||||
| -rw-r--r-- | src/parse/context.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/context.c b/src/parse/context.c index 689fa1a4..cd8d16bc 100644 --- a/src/parse/context.c +++ b/src/parse/context.c @@ -5,4 +5,4 @@ #include "../stdlib/tables.h" #include "../stdlib/types.h" -TypeInfo_t *parse_comments_info = Table$info(Pointer$info("@", &Memory$info), Pointer$info("@", &Memory$info)); +const TypeInfo_t *parse_comments_info = Table$info(Pointer$info("@", &Memory$info), Pointer$info("@", &Memory$info)); diff --git a/src/parse/context.h b/src/parse/context.h index 4d519a83..f1e3be2f 100644 --- a/src/parse/context.h +++ b/src/parse/context.h @@ -8,7 +8,7 @@ #include "../stdlib/files.h" #include "../stdlib/types.h" -const TypeInfo_t *parse_comments_info; +extern const TypeInfo_t *parse_comments_info; typedef struct { file_t *file; |
