From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27511 invoked by alias); 7 Jun 2014 17:19:16 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32733 Received: (qmail 14502 invoked from network); 7 Jun 2014 17:19:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 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== X-Received: by 10.14.194.136 with SMTP id m8mr603307een.4.1402161539153; Sat, 07 Jun 2014 10:18:59 -0700 (PDT) Sender: Nikolas Garofil From: Nikolas Garofil To: zsh-workers@zsh.org 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 Message-Id: <1402161535-20756-2-git-send-email-nikolas@garofil.be> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1402161535-20756-1-git-send-email-nikolas@garofil.be> References: <1402161535-20756-1-git-send-email-nikolas@garofil.be> --- 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