ref: 321ff05de46a7eaf967e73364dd02fa70c08518a
dir: /symbol.h/
#pragma once #ifndef SYMBOL_H #define SYMBOL_H struct type; struct symbol { char *str; struct type *type; struct symbol *next; }; struct symhash; extern struct symhash siden, sgoto, sstruct; #endif