home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / include / symbol.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  112 b   |  10 lines

  1. /*
  2.  * Structure of a symbol table entry
  3.  */
  4.  
  5. struct    symbol {
  6.     char    sy_name[8];
  7.     char    sy_type;
  8.     int    sy_value;
  9. };
  10.