X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fnetwork%2Fether.c;h=4304a972fe5affea6cf5d24a1e802a9043e9fa83;hp=ac55411af05cdb636111c323110b8ac06febec5c;hb=fbcd82040cb67ee14886c6ac4c200cde3662f986;hpb=d66ab4f1409ad1a2093239ef48b7bca596acdf52 diff --git a/src/network/ether.c b/src/network/ether.c index ac55411a..4304a972 100644 --- a/src/network/ether.c +++ b/src/network/ether.c @@ -41,3 +41,18 @@ char *ether_ntoa (const struct ether_addr *p_a) { static char x[18]; return ether_ntoa_r (p_a, x); } + +int ether_line(const char *l, struct ether_addr *e, char *hostname) +{ + return -1; +} + +int ether_ntohost(char *hostname, const struct ether_addr *e) +{ + return -1; +} + +int ether_hostton(const char *hostname, struct ether_addr *e) +{ + return -1; +}