From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/1345 Path: news.gmane.org!not-for-mail From: Isaac Dunham Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH 7/10] __fcntl Date: Sun, 22 Jul 2012 18:33:42 -0700 Message-ID: <20120722183342.5c9d4b70@newbook> References: <20120722181332.191d4fa5@newbook> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/p=B7w.1P/C2bf0O1n7NpW+D" X-Trace: dough.gmane.org 1343007246 9964 80.91.229.3 (23 Jul 2012 01:34:06 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 23 Jul 2012 01:34:06 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-1346-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jul 23 03:34:03 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1St7X7-0003e9-Sz for gllmg-musl@plane.gmane.org; Mon, 23 Jul 2012 03:34:02 +0200 Original-Received: (qmail 18127 invoked by uid 550); 23 Jul 2012 01:34:01 -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 18119 invoked from network); 23 Jul 2012 01:34:00 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=fbfGdSWLvChbyuYuY4G34/obSEMux1joMkP+Z7C8lVFbw+rloK+2TMbyJWaVrVyNdN581HPTnOG8Ujb3Dwdp9rq78bpJBGfQQTmAPUDBd2sToHp1njbGD7rtmnWPN/eBh2qLVzl+HrXGoHgnBC6i95o6cXeZzUwdskwod0pI6Y8=; h=Date:From:To:Subject:Message-ID:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type; In-Reply-To: <20120722181332.191d4fa5@newbook> X-Mailer: Claws Mail 3.7.4 (GTK+ 2.20.1; i486-pc-linux-gnu) Xref: news.gmane.org gmane.linux.lib.musl.general:1345 Archived-At: --MP_/p=B7w.1P/C2bf0O1n7NpW+D Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Sun, 22 Jul 2012 18:13:32 -0700 Isaac Dunham wrote: > This patch series is basically a reworked version of orc's previous > patch. > From what orc said, the first patch should provide enough to build > Xorg; I haven't tested this yet. > A few more patches are syscall wrappers (splice) or trivial > functions (finite). > Finally, there are several aliases. Adds __fcntl. As previously, this is based on orc's patch. Isaac Dunham --MP_/p=B7w.1P/C2bf0O1n7NpW+D Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=7-__fcntl.diff diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c index fb7806a..3b8f6fd 100644 --- a/src/fcntl/fcntl.c +++ b/src/fcntl/fcntl.c @@ -24,3 +24,5 @@ int fcntl(int fd, int cmd, ...) } return syscall(SYS_fcntl, fd, cmd, arg); } + +weak_alias(fcntl, __fcntl); --MP_/p=B7w.1P/C2bf0O1n7NpW+D--