aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-11 19:06:42 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-11 19:06:42 -0500
commit79795096e7dbc4c416722dd9f0df311e95eef6f0 (patch)
tree8e0925934b1a736bfd62f2e211d47cc067e794a8 /ast.h
parent0567fcc8acd49ab0676fb3c218b93494a91c46e2 (diff)
Rename sss_* to just *
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ast.h b/ast.h
index 3e3a6327..c6f97d0c 100644
--- a/ast.h
+++ b/ast.h
@@ -64,7 +64,7 @@ typedef struct tag_ast_s {
struct type_ast_s {
type_ast_e tag;
- sss_file_t *file;
+ file_t *file;
const char *start, *end;
union {
struct {} UnknownTypeAST;
@@ -115,7 +115,7 @@ typedef enum {
struct ast_s {
ast_e tag;
- sss_file_t *file;
+ file_t *file;
const char *start, *end;
union {
struct {} Unknown;
@@ -249,7 +249,7 @@ struct ast_s {
} DocTest;
struct {
const char *path;
- sss_file_t *file;
+ file_t *file;
bool main_program;
} Use;
struct {