remove commented out #includes etc

move get_hz to the only caller
This commit is contained in:
Denis Vlasenko
2006-12-31 18:58:32 +00:00
parent 98ee06d3d4
commit 13463af29f
6 changed files with 22 additions and 42 deletions

View File

@ -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__ */