From 93d5bed697f2681471c03d539c6f55f070b86e54 Mon Sep 17 00:00:00 2001 From: fbernon Date: Mon, 26 Nov 2007 10:23:40 +0000 Subject: [PATCH] Minor change: add #if 0 / #endif in ethernetif.c skeleton to avoid false bug reports. --- src/netif/ethernetif.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/netif/ethernetif.c b/src/netif/ethernetif.c index 26d2f818..12999c1f 100644 --- a/src/netif/ethernetif.c +++ b/src/netif/ethernetif.c @@ -44,6 +44,9 @@ */ #include "lwip/opt.h" + +#if 0 /* don't build, this is only a skeleton, see previous comment */ + #include "lwip/def.h" #include "lwip/mem.h" #include "lwip/pbuf.h" @@ -312,3 +315,5 @@ ethernetif_init(struct netif *netif) return ERR_OK; } + +#endif /* 0 */ \ No newline at end of file