Add prototypes for ether_aton_r() and ether_ntoa_r() missed in previous

commit.
This commit is contained in:
rwatson 2007-05-13 15:52:46 +00:00
parent 12c13290f9
commit 48b37b43f0

View File

@ -396,9 +396,11 @@ void ether_vlan_mtap(struct bpf_if *, struct mbuf *,
*/
__BEGIN_DECLS
struct ether_addr *ether_aton(const char *);
struct ether_addr *ether_aton_r(const char *, struct ether_addr *);
int ether_hostton(const char *, struct ether_addr *);
int ether_line(const char *, struct ether_addr *, char *);
char *ether_ntoa(const struct ether_addr *);
char *ether_ntoa_r(const struct ether_addr *, char *);
int ether_ntohost(char *, const struct ether_addr *);
__END_DECLS