bugfix compile error

This commit is contained in:
Harald Pichler 2013-07-31 15:20:24 +02:00
parent 89723ebfa8
commit 532063c422
2 changed files with 3 additions and 1 deletions

View file

@ -5,7 +5,7 @@ CONTIKI=../../..
WITH_UIP6=1 WITH_UIP6=1
UIP_CONF_IPV6=1 UIP_CONF_IPV6=1
CFLAGS+= -DUIP_CONF_IPV6_RPL CFLAGS+= -DUIP_CONF_IPV6_RPL -DUIP_CONF_IPV6
#linker optimizations #linker optimizations
SMALL=1 SMALL=1

View file

@ -118,6 +118,7 @@ output(void)
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#if !SLIP_BRIDGE_CONF_NO_PUTCHAR
#undef putchar #undef putchar
int int
putchar(int c) putchar(int c)
@ -145,6 +146,7 @@ putchar(int c)
} }
return c; return c;
} }
#endif
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
const struct uip_fallback_interface rpl_interface = { const struct uip_fallback_interface rpl_interface = {
init, output init, output