From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/507 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH] add memory.h Date: Tue, 11 Oct 2011 19:55:41 -0400 Message-ID: <20111011235541.GW132@brightrain.aerifal.cx> References: <1318330395.133173.11984@legion> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1318377832 5563 80.91.229.12 (12 Oct 2011 00:03:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 12 Oct 2011 00:03:52 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-508-gllmg-musl=m.gmane.org@lists.openwall.com Wed Oct 12 02:03:49 2011 Return-path: Envelope-to: gllmg-musl@lo.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by lo.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1RDmIW-00044d-2Z for gllmg-musl@lo.gmane.org; Wed, 12 Oct 2011 02:03:48 +0200 Original-Received: (qmail 7351 invoked by uid 550); 12 Oct 2011 00:03:47 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 7343 invoked from network); 12 Oct 2011 00:03:47 -0000 Content-Disposition: inline In-Reply-To: <1318330395.133173.11984@legion> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:507 Archived-At: On Tue, Oct 11, 2011 at 12:31:50PM +0200, Arvid Ephraim Picciani wrote: > --- > include/memory.h | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > create mode 100644 include/memory.h > > diff --git a/include/memory.h b/include/memory.h > new file mode 100644 > index 0000000..c8b49f2 > --- /dev/null > +++ b/include/memory.h > @@ -0,0 +1 @@ > +#include This is incorrect. memory.h is a nonsensical nonstandard alias for string.h, not stdlib.h. Rich