From owner-svn-src-all@freebsd.org Sat Feb 18 21:08:10 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2E6CCE390B; Sat, 18 Feb 2017 21:08:10 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8FE64177A; Sat, 18 Feb 2017 21:08:10 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1IL89Dg009307; Sat, 18 Feb 2017 21:08:09 GMT (envelope-from mmokhi@FreeBSD.org) Received: (from mmokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1IL89eE009306; Sat, 18 Feb 2017 21:08:09 GMT (envelope-from mmokhi@FreeBSD.org) Message-Id: <201702182108.v1IL89eE009306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmokhi set sender to mmokhi@FreeBSD.org using -f From: Mahdi Mokhtari Date: Sat, 18 Feb 2017 21:08:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313923 - head/include X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Feb 2017 21:08:10 -0000 Author: mmokhi (ports committer) Date: Sat Feb 18 21:08:09 2017 New Revision: 313923 URL: https://svnweb.freebsd.org/changeset/base/313923 Log: Add new catrigl.c (r313761) APIs to include/complex.h Reviewed by: bde, emaste Approved by: bde, emaste (src committers) Differential Revision: https://reviews.freebsd.org/D9615 Modified: head/include/complex.h Modified: head/include/complex.h ============================================================================== --- head/include/complex.h Sat Feb 18 19:53:37 2017 (r313922) +++ head/include/complex.h Sat Feb 18 21:08:09 2017 (r313923) @@ -67,6 +67,10 @@ double complex cacos(double complex); float complex cacosf(float complex); double complex cacosh(double complex); float complex cacoshf(float complex); +long double complex + cacoshl(long double complex); +long double complex + cacosl(long double complex); double carg(double complex); float cargf(float complex); long double cargl(long double complex); @@ -74,10 +78,18 @@ double complex casin(double complex); float complex casinf(float complex); double complex casinh(double complex); float complex casinhf(float complex); +long double complex + casinhl(long double complex); +long double complex + casinl(long double complex); double complex catan(double complex); float complex catanf(float complex); double complex catanh(double complex); float complex catanhf(float complex); +long double complex + catanhl(long double complex); +long double complex + catanl(long double complex); double complex ccos(double complex); float complex ccosf(float complex); double complex ccosh(double complex);