/* UNISRC_ID: @(#)nlist.h 26.1 */ /* file nlist.h */ /* NOTE: this structure resembles, but is not the same as nlist_ defined in a.out.h! */ struct nlist { /* sizeof(struct nlist)=14 */ char * n_name; long n_value; /* mit = svalue */ unsigned char n_type; /* mit = stype */ unsigned char n_length; /* length of ascii symbol name */ short n_unit; /* symbolic debugging unit number */ short n_sdindex; /* index into DST */ /*char n_ascii;*/ /* ascii for symbol name (no \0 trailer) */ /* NOTE: n_ascii is a variable length array of size n_length */ };