=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/client.c,v retrieving revision 1.32 retrieving revision 1.33 diff -c -r1.32 -r1.33 *** src/usr.bin/rdist/client.c 2015/01/16 06:40:11 1.32 --- src/usr.bin/rdist/client.c 2015/01/20 09:00:16 1.33 *************** *** 1,4 **** ! /* $OpenBSD: client.c,v 1.32 2015/01/16 06:40:11 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: client.c,v 1.33 2015/01/20 09:00:16 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 29,37 **** * SUCH DAMAGE. */ #include ! #include "defs.h" #include "y.tab.h" /* --- 29,44 ---- * SUCH DAMAGE. */ + #include #include + #include + #include + #include + #include + #include + #include ! #include "client.h" #include "y.tab.h" /* *************** *** 78,84 **** char * remfilename(char *src, char *dest, char *path, char *rname, int destdir) { - extern struct namelist *filelist; char *lname, *cp; static char buff[BUFSIZ]; int srclen, pathlen; --- 85,90 ---- *************** *** 157,163 **** runspecial(char *starget, opt_t opts, char *rname, int destdir) { struct subcmd *sc; - extern struct subcmd *subcmds; char *rfile; rfile = remfilename(source, Tdest, target, rname, destdir); --- 163,168 ---- *************** *** 192,198 **** char *rfile; struct namelist *new; struct subcmd *sc; - extern struct subcmd *subcmds; int isokay = 0; rfile = remfilename(source, Tdest, target, rname, destdir); --- 197,202 ----