[BACK]Return to extern.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsync

Diff for /src/usr.bin/rsync/extern.h between version 1.26 and 1.27

version 1.26, 2019/03/31 09:26:05 version 1.27, 2019/04/02 05:32:08
Line 199 
Line 199 
         char    *name; /* resolved name */          char    *name; /* resolved name */
 };  };
   
   typedef struct arglist arglist;
   struct arglist {
           char    **list;
           u_int   num;
           u_int   nalloc;
   };
   void    addargs(arglist *, char *, ...)
               __attribute__((format(printf, 2, 3)));
   void    freeargs(arglist *);
   
 struct  download;  struct  download;
 struct  upload;  struct  upload;
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27