blob: c134e0c5ba279fa0c33dba00d95180661f43547e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* symtab.h 1.1 85/02/04 */
struct stab {
struct stab *s_next;
int s_type;
char *s_text;
char *s_reptext;
};
extern struct stab *lookup();
extern struct stab *enter();
|