--- rwhod/rwhod.c.orig 2008-09-28 22:36:55.000000000 +0000 +++ rwhod/rwhod.c 2008-09-28 22:37:39.000000000 +0000 @@ -96,7 +96,7 @@ static void broadcaster(void); static int configure(int s); static int verify(const char *name); -static int getloadavg(double ptr[3], int n); +static int rwhod_getloadavg(double ptr[3], int n); /* * We communicate with each neighbor in @@ -453,7 +453,7 @@ we->we_idle = htonl(now - stb.st_atime); we++; } - getloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0])); + rwhod_getloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0])); for (i = 0; i < 3; i++) wd->wd_loadav[i] = htonl((u_long)(avenrun[i] * 100)); cc = (char *)we - (char *)wd; @@ -502,7 +502,7 @@ * * Send comments/bug reports/fixes to: pen@signum.se or pen@lysator.liu.se */ -int getloadavg(double ptr[3], int n) +int rwhod_getloadavg(double ptr[3], int n) { FILE *fp;