summaryrefslogtreecommitdiff
path: root/unproto/symbol.h
diff options
context:
space:
mode:
Diffstat (limited to 'unproto/symbol.h')
-rw-r--r--unproto/symbol.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/unproto/symbol.h b/unproto/symbol.h
new file mode 100644
index 0000000..0711c1f
--- /dev/null
+++ b/unproto/symbol.h
@@ -0,0 +1,11 @@
+/* @(#) symbol.h 1.1 91/09/22 21:21:42 */
+
+struct symbol {
+ char *name; /* symbol name */
+ int type; /* symbol type */
+ struct symbol *next;
+};
+
+extern void sym_enter(); /* add symbol to table */
+extern struct symbol *sym_find(); /* locate symbol */
+extern void sym_init(); /* prime the table */