From 642936d6dd22b99534cab4099deea8d6ceefeea0 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 23 Nov 2013 22:33:05 -0800 Subject: Fix dn_comp prototype and add stub This function is used by ping6 from iputils. --- src/network/dn_comp.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/network/dn_comp.c (limited to 'src') diff --git a/src/network/dn_comp.c b/src/network/dn_comp.c new file mode 100644 index 00000000..4f4452aa --- /dev/null +++ b/src/network/dn_comp.c @@ -0,0 +1,9 @@ +#include +#include "libc.h" + +int __dn_comp(const char *src, unsigned char *dst, int space, unsigned char **dnptrs, unsigned char **lastdnptr) +{ + return -1; +} + +weak_alias(__dn_comp, dn_comp); -- cgit v1.2.1