summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-19 17:21:52 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-21 09:14:30 +0100
commit81264e8097b705f3b2a7e29be0a1a2ea853230cb (patch)
tree0f8efc1f920a67377578f4c844872f387991d8a6 /include
parent1571ed1315ff95278fed019b838f183ee37cc198 (diff)
ether_line: fix build for socket && !ip
The internal __ether_line helper needs ether_ntoa_r() Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/netinet/ether.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/netinet/ether.h b/include/netinet/ether.h
index c850e3e4f..2e52679fa 100644
--- a/include/netinet/ether.h
+++ b/include/netinet/ether.h
@@ -31,7 +31,8 @@
__BEGIN_DECLS
-#if defined __UCLIBC_HAS_IPV4__ || defined __UCLIBC_HAS_IPV6__
+#if defined __UCLIBC_HAS_SOCKET__ || defined __UCLIBC_HAS_IPV4__ || \
+ defined __UCLIBC_HAS_IPV6__
/* Convert 48 bit Ethernet ADDRess to ASCII. */
extern char *ether_ntoa (__const struct ether_addr *__addr) __THROW;
extern char *ether_ntoa_r (__const struct ether_addr *__addr, char *__buf)
@@ -43,10 +44,8 @@ extern struct ether_addr *ether_aton (__const char *__asc) __THROW;
extern struct ether_addr *ether_aton_r (__const char *__asc,
struct ether_addr *__addr) __THROW;
libc_hidden_proto(ether_aton_r)
-#endif
-#if defined __UCLIBC_HAS_SOCKET__ || defined __UCLIBC_HAS_IPV4__ || \
- defined __UCLIBC_HAS_IPV6__
+
/* Map 48 bit Ethernet number ADDR to HOSTNAME. */
extern int ether_ntohost (char *__hostname, __const struct ether_addr *__addr)
__THROW;