From 2572a1bc53c3c8dbbbaef4e4f12aaa216cc91e8e Mon Sep 17 00:00:00 2001 From: andersen Date: Wed, 11 Dec 2002 03:57:12 +0000 Subject: Eliminate dependancy on kernel header files. Naughty naughty. Using linux kernel headers is a Bad Thing(tm) and should be punished. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6161 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- networking/route.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'networking') diff --git a/networking/route.c b/networking/route.c index d4c65f8cd..8117b0397 100644 --- a/networking/route.c +++ b/networking/route.c @@ -15,7 +15,7 @@ * Foundation; either version 2 of the License, or (at * your option) any later version. * - * $Id: route.c,v 1.19 2002/11/26 09:02:06 bug1 Exp $ + * $Id: route.c,v 1.20 2002/12/11 03:57:12 andersen Exp $ * * displayroute() code added by Vladimir N. Oleynik * adjustments by Larry Doolittle @@ -28,7 +28,6 @@ #include "inet_common.h" #include #include -#include /* HZ */ #include #include #include @@ -223,7 +222,7 @@ static int INET_setroute(int action, int options, char **args) #if HAVE_RTF_IRTT rt.rt_flags |= RTF_IRTT; rt.rt_irtt = atoi(*(args - 1)); - rt.rt_irtt *= (HZ / 100); /* FIXME */ + rt.rt_irtt *= (sysconf(_SC_CLK_TCK) / 100); /* FIXME */ #if 0 /* FIXME: do we need to check anything of this? */ if (rt.rt_irtt < 1 || rt.rt_irtt > (120 * HZ)) { error_msg(_("Invalid initial rtt.")); -- cgit v1.2.3-55-g6feb