=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/child.c,v retrieving revision 1.24 retrieving revision 1.25 diff -c -r1.24 -r1.25 *** src/usr.bin/rdist/child.c 2015/01/20 03:55:18 1.24 --- src/usr.bin/rdist/child.c 2015/01/20 09:00:16 1.25 *************** *** 1,4 **** ! /* $OpenBSD: child.c,v 1.24 2015/01/20 03:55:18 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: child.c,v 1.25 2015/01/20 09:00:16 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 29,36 **** * SUCH DAMAGE. */ - #include "defs.h" - /* * Functions for rdist related to children */ --- 29,34 ---- *************** *** 39,44 **** --- 37,50 ---- #include #include + #include + #include + #include + #include + #include + + #include "client.h" + typedef enum _PROCSTATE { PSrunning, PSdead *************** *** 58,64 **** static CHILD *childlist = NULL; /* List of children */ int activechildren = 0; /* Number of active children */ - extern int maxchildren; /* Max active children */ static int needscan = FALSE; /* Need to scan children */ static void removechild(CHILD *); --- 64,69 ----