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

Diff for /src/usr.bin/tr/tr.c between version 1.3 and 1.4

version 1.3, 1997/01/15 23:43:24 version 1.4, 1997/07/25 21:05:45
Line 266 
Line 266 
         exit(1);          exit(1);
 }  }
   
 #if __STDC__  #ifdef __STDC__
 #include <stdarg.h>  #include <stdarg.h>
 #else  #else
 #include <varargs.h>  #include <varargs.h>
 #endif  #endif
   
 void  void
 #if __STDC__  #ifdef __STDC__
 err(const char *fmt, ...)  err(const char *fmt, ...)
 #else  #else
 err(fmt, va_alist)  err(fmt, va_alist)
Line 282 
Line 282 
 #endif  #endif
 {  {
         va_list ap;          va_list ap;
 #if __STDC__  #ifdef __STDC__
         va_start(ap, fmt);          va_start(ap, fmt);
 #else  #else
         va_start(ap);          va_start(ap);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4