nf: Remove unused function htonll()

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Thomas Graf 2014-08-26 01:09:10 +02:00 committed by Thomas Haller
parent a45fca9a58
commit 485cefd665

View file

@ -35,19 +35,11 @@ static uint64_t ntohll(uint64_t x)
{
return x;
}
static uint64_t htonll(uint64_t x)
{
return x;
}
#elif __BYTE_ORDER == __LITTLE_ENDIAN
static uint64_t ntohll(uint64_t x)
{
return bswap_64(x);
}
static uint64_t htonll(uint64_t x)
{
return bswap_64(x);
}
#endif
static struct nla_policy ct_policy[CTA_MAX+1] = {