/*
 *  VXnlist.h
 *
 *  vxworks does not supply nlist.h.  This is a subset.
 */
#ifndef _VXnlist_h
#define _VXnlist_h

struct  nlist {
        char    *n_name;        /* for use when in-core */
        unsigned char n_type;   /* type flag, i.e. N_TEXT etc; see below */
        char    n_other;        /* unused */
        short   n_desc;         /* see <stab.h> */
        unsigned long n_value;  /* value of this symbol (or sdb offset) */
};
#define n_hash  n_desc          /* used internally by ld */

#endif
