Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / include / symentry.h
1 typedef struct symentry_t  {\r
2     unsigned int entry;        /* entry number */\r
3     struct symentry_t *next;   /* link to next symentry */\r
4     char *id;                  /* pointer to name */\r
5     char sclass;               /* storage class code */\r
6     char typequal;             /* type qualifier */\r
7     char level;                /* scope level */\r
8     char nspace;               /* name space identifier */\r
9     char ass;                  /* used to flag assignment */\r
10     type_expr * type;          /* object type */\r
11     val_t  val;                /* symbol value information */\r
12 }symentry_t;\r