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

Diff for /src/usr.bin/wc/wc.c between version 1.5 and 1.6

version 1.5, 2001/07/12 05:17:31 version 1.6, 2001/11/19 19:02:17
Line 71 
Line 71 
         int argc;          int argc;
         char *argv[];          char *argv[];
 {  {
         register int ch;          int ch;
   
         setlocale(LC_ALL, "");          setlocale(LC_ALL, "");
   
Line 125 
Line 125 
 cnt(file)  cnt(file)
         char *file;          char *file;
 {  {
         register u_char *C;          u_char *C;
         register short gotsp;          short gotsp;
         register int len;          int len;
         register int64_t linect, wordct, charct;          int64_t linect, wordct, charct;
         struct stat sbuf;          struct stat sbuf;
         int fd;          int fd;
         u_char buf[MAXBSIZE];          u_char buf[MAXBSIZE];

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