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

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

version 1.3, 1997/01/15 23:43:28 version 1.4, 1997/07/25 21:05:46
Line 252 
Line 252 
         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 268 
Line 268 
 #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