diff options
Diffstat (limited to 'src/as_analyzer.h')
| -rw-r--r-- | src/as_analyzer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/as_analyzer.h b/src/as_analyzer.h index 988cca0..b59fe3c 100644 --- a/src/as_analyzer.h +++ b/src/as_analyzer.h @@ -15,9 +15,9 @@ struct sym_table { struct sym_table_entry *buf; }; -struct sym_table new_sym_table(allocator_t alct); -void sym_table_add(allocator_t alct, struct sym_table* tbl, const char* name, int pos); +struct sym_table new_sym_table(struct allocator * alct); +void sym_table_add(struct allocator * alct, struct sym_table* tbl, const char* name, int pos); -struct sym_table analyze_prog(allocator_t alct, prog_t prog); +struct sym_table analyze_prog(struct allocator * alct, struct prog * prog); #endif // FVM_AS_ANALYZER_H_ |
