From 9209a2ee33677e55e043176556fd572f4043404e Mon Sep 17 00:00:00 2001 From: fbernon Date: Mon, 4 Jun 2007 09:54:58 +0000 Subject: [PATCH] Minor fix for warning: pbuf_copy declaration is now mandatory (since it's used in icmp.c) --- src/include/lwip/pbuf.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/include/lwip/pbuf.h b/src/include/lwip/pbuf.h index 171ebb11..9c798ab0 100644 --- a/src/include/lwip/pbuf.h +++ b/src/include/lwip/pbuf.h @@ -110,9 +110,7 @@ u8_t pbuf_clen(struct pbuf *p); void pbuf_cat(struct pbuf *h, struct pbuf *t); void pbuf_chain(struct pbuf *h, struct pbuf *t); struct pbuf *pbuf_dechain(struct pbuf *p); -#if ARP_QUEUEING err_t pbuf_copy(struct pbuf *p_to, struct pbuf *p_from); -#endif #ifdef __cplusplus }