* added compilers lcc and bcc (linux86)
[mascara-docs.git] / compilers / linux86-0.16.17 / unproto / symbol.h
blob0711c1f4dc7c7277b566c33c284ad25508932675
1 /* @(#) symbol.h 1.1 91/09/22 21:21:42 */
3 struct symbol {
4 char *name; /* symbol name */
5 int type; /* symbol type */
6 struct symbol *next;
7 };
9 extern void sym_enter(); /* add symbol to table */
10 extern struct symbol *sym_find(); /* locate symbol */
11 extern void sym_init(); /* prime the table */