use memset and memcpy instead of bzero and bcopy throughout lwIP core code.Archs need to update.Bug #1899

This commit is contained in:
jani
2002-12-18 10:40:01 +00:00
parent 219266b7de
commit 4c1069c38b
12 changed files with 24 additions and 24 deletions

View File

@@ -55,7 +55,7 @@ loopif_output(struct netif *netif, struct pbuf *p,
ptr = r->payload;
for(q = p; q != NULL; q = q->next) {
bcopy(q->payload, ptr, q->len);
memcpy(ptr, q->payload, q->len);
ptr += q->len;
}
netif->input(r, netif);