Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id CCEBE7A0F8 for ; Thu, 4 May 2017 18:29:50 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3992E84D9F; Thu, 4 May 2017 18:29:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BF1B184D98 for ; Thu, 4 May 2017 18:29:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id VagX3eSzVhqu for ; Thu, 4 May 2017 18:29:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C300B84D94 for ; Thu, 4 May 2017 18:29:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B9582FBE4; Thu, 4 May 2017 18:29:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1493922588229760" MIME-Version: 1.0 Date: Thu, 4 May 2017 18:29:48 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/security/multigest/files To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170504182948.B9582FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1493922588229760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu May 4 18:29:48 UTC 2017 Modified Files: pkgsrc/security/multigest/files: rmd160.h Log Message: Unconditionally use standard headers, nothing defines the guards. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/security/multigest/files/rmd160.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1493922588229760 Content-Disposition: inline Content-Length: 821 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/multigest/files/rmd160.h diff -u pkgsrc/security/multigest/files/rmd160.h:1.1.1.1 pkgsrc/security/multigest/files/rmd160.h:1.2 --- pkgsrc/security/multigest/files/rmd160.h:1.1.1.1 Wed Mar 5 05:09:44 2014 +++ pkgsrc/security/multigest/files/rmd160.h Thu May 4 18:29:48 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: rmd160.h,v 1.1.1.1 2014/03/05 05:09:44 agc Exp $ */ +/* $NetBSD: rmd160.h,v 1.2 2017/05/04 18:29:48 joerg Exp $ */ /********************************************************************\ * @@ -24,17 +24,9 @@ #ifndef _RMD160_H_ #define _RMD160_H_ -#ifdef HAVE_INTTYPES_H #include -#endif - -#ifdef HAVE_STDINT_H #include -#endif - -#ifdef HAVE_UNISTD_H #include -#endif typedef struct { uint32_t state[5]; /* state (ABCDE) */ --_----------=_1493922588229760--