From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/1351 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH 8/10] finite Date: Mon, 23 Jul 2012 09:58:54 +0200 Message-ID: <20120723075853.GI14463@port70.net> References: <20120722181332.191d4fa5@newbook> <20120722183653.30b6bd34@newbook> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1343030349 21045 80.91.229.3 (23 Jul 2012 07:59:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 23 Jul 2012 07:59:09 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-1352-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jul 23 09:59:09 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 1StDXp-0001A7-CM for gllmg-musl@plane.gmane.org; Mon, 23 Jul 2012 09:59:09 +0200 Original-Received: (qmail 26029 invoked by uid 550); 23 Jul 2012 07:59:07 -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 26019 invoked from network); 23 Jul 2012 07:59:07 -0000 Content-Disposition: inline In-Reply-To: <20120722183653.30b6bd34@newbook> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:1351 Archived-At: * Isaac Dunham [2012-07-22 18:36:53 -0700]: > This provides finite(); it has been split out into finite.c, to avoid > namespace issues. > > Isaac Dunham btw these symbols declared in freebsd math.h with bsd visibility: #define MAXFLOAT extern int signgam; double j0(double); double j1(double); double jn(int, double); double y0(double); double y1(double); double yn(int, double); double gamma(double); double scalb(double, double); double drem(double, double); int finite(double) __pure2; int isnanf(float) __pure2; double gamma_r(double, int *); double lgamma_r(double, int *); double significand(double); float dremf(float, float); int finitef(float) __pure2; float gammaf(float); float j0f(float); float j1f(float); float jnf(int, float); float scalbf(float, float); float y0f(float); float y1f(float); float ynf(int, float); float gammaf_r(float, int *); float lgammaf_r(float, int *); float significandf(float); we might want to fix some of these with the finite change