From owner-cvs-src@FreeBSD.ORG Fri Oct 1 06:33:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52E9416A4CE; Fri, 1 Oct 2004 06:33:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3474943D49; Fri, 1 Oct 2004 06:33:01 +0000 (GMT) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i916X1lH089435; Fri, 1 Oct 2004 06:33:01 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i916X16F089434; Fri, 1 Oct 2004 06:33:01 GMT (envelope-from das) Message-Id: <200410010633.i916X16F089434@repoman.freebsd.org> From: David Schultz Date: Fri, 1 Oct 2004 06:33:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libc/gen isnan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Oct 2004 06:33:01 -0000 das 2004-10-01 06:33:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/gen isnan.c Log: MFC src/lib/libc/gen/isnan.c,v 1.2 | Remove __isnanl() to avoid conflicting with the same function in libm. | __isnan() and __isnanf() must remain in libc for hysterical raisins. | On the other hand, __isnanl() must live in libm because libm uses it | internally and can't depend on older versions of libc to provide it. | Fortunately, we don't need __isnanl() in both libraries. Approved by: re (scottl) Revision Changes Path 1.1.2.1 +0 -10 src/lib/libc/gen/isnan.c