removed bad uip-netif.h include

This commit is contained in:
fros4943 2010-03-29 10:43:03 +00:00
parent d84f84de52
commit 9dfce4bea1

View file

@ -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 */