#ifndef _PLY_SYM_H #define _PLY_SYM_H #include "type.h" typedef struct sym { const char *name; tid_t tid; } sym_t; typedef struct symtab { sym_t *sym; size_t len; } symtab_t; #endif /* _PLY_SYM_H */