summaryrefslogtreecommitdiff
path: root/compat/ether.h
diff options
context:
space:
mode:
Diffstat (limited to 'compat/ether.h')
-rw-r--r--compat/ether.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/compat/ether.h b/compat/ether.h
index 40f1c8c..6dea967 100644
--- a/compat/ether.h
+++ b/compat/ether.h
@@ -45,5 +45,20 @@ char *ether_ntoa_r(const struct ether_addr *addr,char *buf);
struct ether_addr *ether_aton_r(const char *asc,struct ether_addr *addr);
#endif /* not HAVE_ETHER_ATON_R */
-#endif /* not COMPAT__ETHER_H */
+#ifdef HAVE_ETHER_NTOA
+#if !HAVE_DECL_ETHER_NTOA
+/* we define ether_ntoa() here because on some platforms the function is
+ underfined */
+extern char *ether_ntoa(const struct ether_addr *e);
+#endif /* not HAVE_DECL_ETHER_NTOA */
+#endif /* HAVE_ETHER_NTOA */
+
+#ifdef HAVE_ETHER_ATON
+#if !HAVE_DECL_ETHER_ATON
+/* we define ether_aton() here because on some platforms the function is
+ underfined */
+extern struct ether_addr *ether_aton(const char *s);
+#endif /* not HAVE_DECL_ETHER_ATON */
+#endif /* HAVE_ETHER_ATON */
+#endif /* not COMPAT__ETHER_H */