diff --git a/cpu/6502/net/ethernet.c b/cpu/6502/net/ethernet.c index 1b74aa6d8..5276e0780 100644 --- a/cpu/6502/net/ethernet.c +++ b/cpu/6502/net/ethernet.c @@ -30,21 +30,21 @@ * * Author: Oliver Schmidt * - * @(#)$Id: ethernet.c,v 1.2 2007/11/22 11:41:18 oliverschmidt Exp $ + * @(#)$Id: ethernet.c,v 1.3 2007/11/27 20:52:52 oliverschmidt Exp $ */ #include #include #include #include -#include #include #include #include "contiki-net.h" -#include "ethernet-drv.h" +#include "lib/error.h" +#include "net/ethernet-drv.h" -#include "ethernet.h" +#include "net/ethernet.h" struct { char signature[4]; @@ -57,14 +57,6 @@ struct { void (* exit)(void); } *module; -/*---------------------------------------------------------------------------*/ -static void -error_exit(void) -{ - fprintf(stderr, "Press any key to continue ...\n"); - getchar(); - exit(EXIT_FAILURE); -} /*---------------------------------------------------------------------------*/ void ethernet_init(struct ethernet_config *config)