Moved Ethernet address into main uIP module from ARP module
diff --git a/contiki/uip/uip.h b/contiki/uip/uip.h
index 5ddcadc..5910737 100644
--- a/contiki/uip/uip.h
+++ b/contiki/uip/uip.h
@@ -45,7 +45,7 @@
  *
  * This file is part of the uIP TCP/IP stack.
  *
- * $Id: uip.h,v 1.12 2004/07/04 17:00:50 adamdunkels Exp $
+ * $Id: uip.h,v 1.13 2004/09/17 20:59:23 adamdunkels Exp $
  *
  */
 
@@ -1312,6 +1312,13 @@
 
 
 
+/**
+ * Representation of a 48-bit Ethernet address.
+ */
+struct uip_eth_addr {
+  u8_t addr[6];
+};
+
 #endif /* __UIP_H__ */