summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-10-06 08:56:16 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-10-06 08:56:16 +0000
commitf73561de4c3283df10a7eb15a85efef8149312aa (patch)
treecb20986174254e141200275e64c079c40df5f786
parent267c1ab0b4616c820495f6015897303b24e1b8a6 (diff)
- hide relocation (Peter S. Mazinger)
-rw-r--r--include/netinet/ether.h1
-rw-r--r--libc/inet/ether_addr.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/include/netinet/ether.h b/include/netinet/ether.h
index a16255037..0f7029f95 100644
--- a/include/netinet/ether.h
+++ b/include/netinet/ether.h
@@ -38,6 +38,7 @@ extern char *ether_ntoa_r (__const struct ether_addr *__addr, char *__buf)
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)
/* Map 48 bit Ethernet number ADDR to HOSTNAME. */
extern int ether_ntohost (char *__hostname, __const struct ether_addr *__addr)
diff --git a/libc/inet/ether_addr.c b/libc/inet/ether_addr.c
index bcea9ba46..8e19a0f09 100644
--- a/libc/inet/ether_addr.c
+++ b/libc/inet/ether_addr.c
@@ -31,7 +31,6 @@
#include <netinet/ether.h>
#include <netinet/if_ether.h>
-libc_hidden_proto(ether_aton_r)
libc_hidden_proto(ether_ntoa_r)
libc_hidden_proto(sprintf)
#ifdef __UCLIBC_HAS_XLOCALE__