From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16291 invoked by alias); 30 Nov 2017 10:47:01 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 16262 invoked by uid 89); 30 Nov 2017 10:47:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KB_WAM_FROM_NAME_SINGLEWORD,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 30 Nov 2017 10:46:59 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 853C2356F1 for ; Thu, 30 Nov 2017 10:29:18 +0000 (UTC) Received: from localhost.localdomain (ovpn-116-45.phx2.redhat.com [10.3.116.45]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4225A4DA0B for ; Thu, 30 Nov 2017 10:29:18 +0000 (UTC) From: Yaakov Selkowitz To: newlib@sourceware.org Subject: [PATCH 21/24] libm/machine: remove TRAD_SYNOPSIS Date: Thu, 30 Nov 2017 10:47:00 -0000 Message-Id: <20171130102858.16160-22-yselkowi@redhat.com> In-Reply-To: <20171130102858.16160-1-yselkowi@redhat.com> References: <20171130102858.16160-1-yselkowi@redhat.com> X-SW-Source: 2017/txt/msg01204.txt.bz2 Signed-off-by: Yaakov Selkowitz --- newlib/libm/machine/i386/f_llrint.c | 5 +---- newlib/libm/machine/i386/f_lrint.c | 5 +---- newlib/libm/machine/i386/f_rint.c | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/newlib/libm/machine/i386/f_llrint.c b/newlib/libm/machine/i386/f_llrint.c index 10285ebd0..6cc81ea1f 100644 --- a/newlib/libm/machine/i386/f_llrint.c +++ b/newlib/libm/machine/i386/f_llrint.c @@ -22,15 +22,12 @@ INDEX INDEX llrintl -ANSI_SYNOPSIS +SYNOPSIS #include long long int llrint(double x); long long int llrintf(float x); long long int llrintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <>, <> and <> functions round <[x]> to the nearest integer value, according to the current rounding direction. If the rounded value is outside the diff --git a/newlib/libm/machine/i386/f_lrint.c b/newlib/libm/machine/i386/f_lrint.c index b8cdabb5d..62b2c41ed 100644 --- a/newlib/libm/machine/i386/f_lrint.c +++ b/newlib/libm/machine/i386/f_lrint.c @@ -21,15 +21,12 @@ INDEX INDEX lrintl -ANSI_SYNOPSIS +SYNOPSIS #include long int lrint(double x); long int lrintf(float x); long int lrintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <>, <> and <> functions round <[x]> to the nearest integer value, according to the current rounding direction. If the rounded value is outside the diff --git a/newlib/libm/machine/i386/f_rint.c b/newlib/libm/machine/i386/f_rint.c index e335d463c..e72316f22 100644 --- a/newlib/libm/machine/i386/f_rint.c +++ b/newlib/libm/machine/i386/f_rint.c @@ -21,15 +21,12 @@ INDEX INDEX rintl -ANSI_SYNOPSIS +SYNOPSIS #include double rint(double x); float rintf(float x); long double rintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <>, <> and <> functions round <[x]> to an integer value in floating-point format, using the current rounding direction. They may -- 2.15.0