Needed for patch to bug #19937: pbuf_copy is always compiled, not only if ARP_QUEUEING is enabled

This commit is contained in:
goldsimon 2007-06-03 11:28:25 +00:00
parent 4f7dc3c76c
commit 75fd6fc4a4

View File

@ -656,7 +656,6 @@ pbuf_dechain(struct pbuf *p)
return (tail_gone > 0? NULL: q); return (tail_gone > 0? NULL: q);
} }
#if ARP_QUEUEING
/** /**
* *
* Create PBUF_RAM copies of pbufs. * Create PBUF_RAM copies of pbufs.
@ -741,4 +740,3 @@ pbuf_copy(struct pbuf *p_to, struct pbuf *p_from)
#endif #endif
return ERR_OK; return ERR_OK;
} }
#endif /* ARP_QUEUEING */