Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 2/6] strict compilers expect the number of bytes to be a size_t for bcopy
- X-seq: zsh-workers 32733
- From: Nikolas Garofil <nikolas@xxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 2/6] strict compilers expect the number of bytes to be a size_t for bcopy
- Date: Sat, 7 Jun 2014 19:18:51 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:in-reply-to:references; bh=nNMD+rKUT4YygWyl9Lsvr9EZ+YWyxuLcqIQpxzYwWNA=; b=VwNDyduZIX9/4fAuOFGSfGfCrSqWO91wZjcoNNHFWu6PJNVALfGWpIUpA210MmTeZe Vk1hHK8+i5OLYE5pL73oTEv0rpmkcIeM/R6Ns8RQSssDyMKHL0Rp81ssCq4tZ+E32WUy v6hGD4Ocjbnl6QhfDQf39mmOW6zPCq7XO+oRSEDghCMRcE1kdpYo3jJWiZZHFQylJUya V38qkX2pWTzMzYh2TNVByKvIHVDReLyHM34gVy6/JZABri21jX6T7mlk2+84XuPC8RSZ +WfjWnM37by+1+pIPRrkQ4Ddfd+RBebEerWY0BGCNUrRshpRJJT1e5scaAfw6aFv1D6Q pQTQ==
- In-reply-to: <1402161535-20756-1-git-send-email-nikolas@garofil.be>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <1402161535-20756-1-git-send-email-nikolas@garofil.be>
- Sender: Nikolas Garofil <nikolas.garofil@xxxxxxxxx>
---
Src/prototypes.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Src/prototypes.h b/Src/prototypes.h
index 00988ac..e3db4f5 100644
--- a/Src/prototypes.h
+++ b/Src/prototypes.h
@@ -130,5 +130,5 @@ extern char *strerror _((int errnum));
/***************************************************/
#ifndef HAVE_MEMMOVE
-extern void bcopy _((const void *, void *, int));
+extern void bcopy _((const void *, void *, size_t));
#endif
--
1.8.3.2
Messages sorted by:
Reverse Date,
Date,
Thread,
Author