symbol X
1: /* 2: * Structure of a symbol table entry 3: */ 4: 5: struct symbol { 6: char sy_name[8]; 7: char sy_type; 8: int sy_value; 9: };