From 9dfce4bea1e21830a53b52c77316c02cf952c1d1 Mon Sep 17 00:00:00 2001 From: fros4943 Date: Mon, 29 Mar 2010 10:43:03 +0000 Subject: [PATCH] removed bad uip-netif.h include --- platform/cooja/contiki-cooja-main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/cooja/contiki-cooja-main.c b/platform/cooja/contiki-cooja-main.c index c5d0d7552..8392a79b7 100644 --- a/platform/cooja/contiki-cooja-main.c +++ b/platform/cooja/contiki-cooja-main.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: contiki-cooja-main.c,v 1.4 2010/03/25 09:12:03 fros4943 Exp $ + * $Id: contiki-cooja-main.c,v 1.5 2010/03/29 10:43:03 fros4943 Exp $ */ /** @@ -94,7 +94,6 @@ static struct uip_fw_netif slip_if = #define WITH_UIP6 0 #endif #if WITH_UIP6 -#include "net/uip-netif.h" #define PRINT6ADDR(addr) printf("%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x", ((u8_t *)addr)[0], ((u8_t *)addr)[1], ((u8_t *)addr)[2], ((u8_t *)addr)[3], ((u8_t *)addr)[4], ((u8_t *)addr)[5], ((u8_t *)addr)[6], ((u8_t *)addr)[7], ((u8_t *)addr)[8], ((u8_t *)addr)[9], ((u8_t *)addr)[10], ((u8_t *)addr)[11], ((u8_t *)addr)[12], ((u8_t *)addr)[13], ((u8_t *)addr)[14], ((u8_t *)addr)[15]) #endif /* WITH_UIP6 */