From owner-cvs-src@FreeBSD.ORG Fri Sep 24 06:33:23 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 0741116A4CE; Fri, 24 Sep 2004 06:33:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7B1743D46; Fri, 24 Sep 2004 06:33:22 +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 i8O6XMv0001978; Fri, 24 Sep 2004 06:33:22 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8O6XMQX001977; Fri, 24 Sep 2004 06:33:22 GMT (envelope-from das) Message-Id: <200409240633.i8O6XMQX001977@repoman.freebsd.org> From: David Schultz Date: Fri, 24 Sep 2004 06:33:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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, 24 Sep 2004 06:33:23 -0000 das 2004-09-24 06:33:22 UTC FreeBSD src repository Modified files: lib/libc/gen isnan.c Log: 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. Prodded by: ale PR: 71698 MT5 candidate Revision Changes Path 1.2 +0 -10 src/lib/libc/gen/isnan.c