summaryrefslogtreecommitdiff
path: root/agent/autonlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'agent/autonlist.h')
-rw-r--r--agent/autonlist.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/agent/autonlist.h b/agent/autonlist.h
new file mode 100644
index 0000000..82a52ab
--- /dev/null
+++ b/agent/autonlist.h
@@ -0,0 +1,10 @@
+#ifndef AUTONLIST_H
+
+struct autonlist {
+ char *symbol;
+ struct nlist nl[2];
+ struct autonlist *left, *right;
+};
+
+#define AUTONLIST_H
+#endif