home *** CD-ROM | disk | FTP | other *** search
- typedef struct procent procent;
- struct procent
- {
- long isym;
- long iline;
- long regmask;
- short regoffset;
- short frameoffset;
- };
-
- typedef struct syment syment;
- struct syment
- {
- char *n_name;
- unsigned long n_value;
- int n_scnum;
- procent *n_proc;
- };
-
- typedef struct symtab symtab;
- struct symtab
- {
- syment *st_tab; /* The entries. */
- int st_symcnt; /* # of entries. */
- };
-