1 #ifdef HAVE_CONFIG_H
2 #include <config.h>
3 #endif /* HAVE_CONFIG_H */
4 
5 #if !HAVE_ETHER_HOSTTON
6 
7 #include "ether.h"
8 
9 int
ether_hostton(const char * str,struct ether_addr * ea)10 ether_hostton (const char *str, struct ether_addr *ea)
11 {
12 	/* not implemented yet */
13 	return 1;
14 }
15 
16 #endif /* !HAVE_ETHER_HOSTTON */
17