Deleted Added
full compact
1/*
2 * lookup.c - Lookup IP address, HW address, netmask
3 */
4
5#include <sys/types.h>
6#include <sys/socket.h>
7
8#ifdef _AIX32
9#include <sys/time.h> /* for struct timeval in net/if.h */
10#endif
11#include <net/if.h>
12#include <netinet/in.h>
13
14#ifdef ETC_ETHERS
15#include <netinet/if_ether.h>
16extern int ether_hostton();
17#endif
18

--- 111 unchanged lines hidden ---