Deleted Added
sdiff udiff text old ( 13575 ) new ( 18471 )
full compact
1/*
2 * getether.c : get the ethernet address of an interface
3 *
4 * All of this code is quite system-specific. As you may well
5 * guess, it took a good bit of detective work to figure out!
6 *
7 * If you figure out how to do this on another system,
8 * please let me know. <gwr@mc.com>
9 */
10
11#include <sys/types.h>
12#include <sys/socket.h>
13
14#ifndef NO_UNISTD
15#include <unistd.h>
16#endif

--- 367 unchanged lines hidden ---