Minor change: add #if 0 / #endif in ethernetif.c skeleton to avoid false bug reports.

This commit is contained in:
fbernon 2007-11-26 10:23:40 +00:00
parent 5743b11925
commit 93d5bed697

View File

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