home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_03 / v7n3052a.txt < prev    next >
Text File  |  1989-01-01  |  334b  |  20 lines

  1. typedef struct SYMBOL {
  2.     int     symtype;
  3.     char    symname[1];        /* first character of symbol name */
  4.     }       SYMBOL;
  5.  
  6. /*
  7.  *  newsym - return a pointer to a symbol of a given length.
  8.  */
  9.  
  10. SYMBOL *newsym(unsigned len) {
  11. extern void   *malloc();
  12.  
  13.     return ( (SYMBOL *) malloc(sizeof(SYMBOL)+len) );
  14. }
  15.  
  16.  
  17.  
  18.  
  19.  
  20.