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

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

version 1.5, 2003/06/03 02:56:21 version 1.6, 2003/06/10 22:20:53
Line 55 
Line 55 
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <unistd.h>  #include <unistd.h>
   
 static void encode();  static void encode(void);
 static __dead void usage();  static __dead void usage(void);
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         struct stat sb;          struct stat sb;
         int mode;          int mode;
Line 110 
Line 108 
  * copy from in to out, encoding as you go along.   * copy from in to out, encoding as you go along.
  */   */
 static void  static void
 encode()  encode(void)
 {  {
         int ch, n;          int ch, n;
         char *p;          char *p;
Line 151 
Line 149 
 }  }
   
 static void  static void
 usage()  usage(void)
 {  {
         (void)fprintf(stderr,"usage: uuencode [infile] remotefile\n");          (void)fprintf(stderr,"usage: uuencode [infile] remotefile\n");
         exit(1);          exit(1);

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