[BACK]Return to emit1.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / xlint / lint1

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/xlint/lint1/emit1.c between version 1.5 and 1.6

version 1.5, 1996/12/22 11:31:06 version 1.6, 1997/11/03 22:36:38
Line 276  outsym(sym, sc, def)
Line 276  outsym(sym, sc, def)
         /* name of the symbol */          /* name of the symbol */
         outname(sym->s_name);          outname(sym->s_name);
   
           /* renamed name of symbol, if necessary */
           if (sym->s_rename) {
                   outchar('r');
                   outname(sym->s_rename);
           }
   
         /* type of the symbol */          /* type of the symbol */
         outtype(sym->s_type);          outtype(sym->s_type);
 }  }
Line 362  outfdef(fsym, posp, rval, osdef, args)
Line 368  outfdef(fsym, posp, rval, osdef, args)
         /* name of function */          /* name of function */
         outname(fsym->s_name);          outname(fsym->s_name);
   
           /* renamed name of function, if necessary */
           if (fsym->s_rename) {
                   outchar('r');
                   outname(fsym->s_rename);
           }
   
         /* argument types and return value */          /* argument types and return value */
         if (osdef) {          if (osdef) {
                 narg = 0;                  narg = 0;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

CVSweb <webmaster@jp.NetBSD.org>