summaryrefslogtreecommitdiff
path: root/agent/autonlist.h
blob: 82a52ab026a71b4e0fbd4ac34a88ec511eb9975b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef AUTONLIST_H

struct autonlist {
    char           *symbol;
    struct nlist    nl[2];
    struct autonlist *left, *right;
};

#define AUTONLIST_H
#endif