aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/utils.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-31 18:58:32 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-31 18:58:32 +0000
commit13463af29f1fd904cc0ea5e0bd0acdabd8431e53 (patch)
tree9ec9a96df5df0ee33bb5e31f89f9407d8cf48396 /networking/libiproute/utils.h
parent98ee06d3d46aa7f89c204681c7075b53300a6a6e (diff)
downloadbusybox-13463af29f1fd904cc0ea5e0bd0acdabd8431e53.tar.gz
remove commented out #includes etc
move get_hz to the only caller
Diffstat (limited to 'networking/libiproute/utils.h')
-rw-r--r--networking/libiproute/utils.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/networking/libiproute/utils.h b/networking/libiproute/utils.h
index 3ecbb3abd..c8ac63197 100644
--- a/networking/libiproute/utils.h
+++ b/networking/libiproute/utils.h
@@ -3,8 +3,6 @@
#define __UTILS_H__ 1
#include "libbb.h"
-//#include <asm/types.h>
-//#include <resolv.h>
#include "libnetlink.h"
#include "ll_map.h"
@@ -90,14 +88,4 @@ int dnet_pton(int af, const char *src, void *addr);
const char *ipx_ntop(int af, const void *addr, char *str, size_t len);
int ipx_pton(int af, const char *src, void *addr);
-extern int __iproute2_hz_internal;
-extern int __get_hz(void);
-
-static inline int get_hz(void)
-{
- if (__iproute2_hz_internal == 0)
- __iproute2_hz_internal = __get_hz();
- return __iproute2_hz_internal;
-}
-
#endif /* __UTILS_H__ */