[BACK]Return to size.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / size

Diff for /src/usr.bin/size/Attic/size.c between version 1.12 and 1.13

version 1.12, 2001/05/31 16:26:59 version 1.13, 2001/07/18 17:17:39
Line 298 
Line 298 
                 (void)printf("text\tdata\tbss\tdec\thex\n");                  (void)printf("text\tdata\tbss\tdec\thex\n");
         }          }
         total = head.a_text + head.a_data + head.a_bss;          total = head.a_text + head.a_data + head.a_bss;
         (void)printf("%lu\t%lu\t%lu\t%lu\t%lx", head.a_text, head.a_data,          (void)printf("%lu\t%lu\t%lu\t%lu\t%lx", (unsigned long)head.a_text,
             head.a_bss, total, total);              (unsigned long)head.a_data, (unsigned long)head.a_bss, total, total);
         if (count > 1)          if (count > 1)
                 (void)printf("\t%s", name);                  (void)printf("\t%s", name);
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13