From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x642.google.com (mail-ej1-x642.google.com [IPv6:2a00:1450:4864:20::642]) by sourceware.org (Postfix) with ESMTPS id 0CC88393FC37 for ; Fri, 25 Sep 2020 12:01:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0CC88393FC37 Received: by mail-ej1-x642.google.com with SMTP id q13so3245152ejo.9 for ; Fri, 25 Sep 2020 05:01:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:cc:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=cPHEIFi2cou74dzrH63Qf/GKwJWJ84WobC780XY9eqk=; b=qZuqcVKlnJeNwVn+k+JQC9/lk6fZWmizkU0BFFrRmH9PYxekHwrekXDsPUBq2sTyjS tivwbHRr2xaNIh0r8/BuohgEjpIkl295reu7XRr9JMRnpBU7kMnRIcalDbXzwdtZWkQe 5zUgasFTonUXGkk0xrT4+O6F1Y5Raz+ZJX9swjkzhbIk3POXrs3Vf9lWjCmGQ1vrN0bU QRGo2/zmcf20BATUqQ4iVK/B8eBBcMNPb9zebXLyA2p0ZB+g8jqhEG3Bb5e68YnloqVj q/pRdgygf0b0Vmp3mHXQyjgP5777q2yzEpjnZmFRQ5ub78gUeAypSvnfCs2/XlpboCPW Nx3A== X-Gm-Message-State: AOAM533PoqBdakYf3fCdOLNFAkOhKeUip5ngbt7/ROYzEL6RPf6Tk1Ru 31zqg8sZxEgSPs7zrB4xIt9wKJfGny0= X-Google-Smtp-Source: ABdhPJzo0zNi8R6go83dXtrSEz4Yvyjb7r8+2ui5T7nEFphwwgWAeFyfmnsGogAbNBsdJcEGBrImvA== X-Received: by 2002:a17:906:5008:: with SMTP id s8mr2481408ejj.408.1601035299868; Fri, 25 Sep 2020 05:01:39 -0700 (PDT) Received: from ?IPv6:2001:a61:2479:6801:d8fe:4132:9f23:7e8f? ([2001:a61:2479:6801:d8fe:4132:9f23:7e8f]) by smtp.gmail.com with ESMTPSA id p17sm1724617ejw.125.2020.09.25.05.01.38 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 25 Sep 2020 05:01:39 -0700 (PDT) Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org, libc-alpha@sourceware.org Subject: Re: [PATCH 06/10] system_data_types.7: Add double_t To: Alejandro Colomar References: <20200925073140.173394-1-colomar.6.4.3@gmail.com> <20200925073140.173394-7-colomar.6.4.3@gmail.com> From: "Michael Kerrisk (man-pages)" Message-ID: <11daa51d-e8f3-100f-b804-f94372f9e698@gmail.com> Date: Fri, 25 Sep 2020 14:01:38 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200925073140.173394-7-colomar.6.4.3@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-10.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, KAM_ASCII_DIVIDERS, KAM_SHORT, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Sep 2020 12:01:42 -0000 On 9/25/20 9:31 AM, Alejandro Colomar wrote: > Signed-off-by: Alejandro Colomar Applied. Thanks, Alex. Cheers, Michael > --- > man7/system_data_types.7 | 36 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) > > diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 > index 238b9593b..43e88942a 100644 > --- a/man7/system_data_types.7 > +++ b/man7/system_data_types.7 > @@ -117,6 +117,42 @@ Conforming to: C99 and later; POSIX.1-2001 and later. > .IP > See also: > .BR div (3) > +.\"------------------------------------- double_t ---------------------/ > +.TP > +.I double_t > +.IP > +Include: > +.IR . > +.IP > +The implementation's most efficient floating type at least as wide as > +.IR double . > +Its type depends on the value of the macro > +.BR FLT_EVAL_METHOD : > +.RS > +.IP * > +0; > +.I double_t > +is > +.IR double . > +.IP * > +1; > +.I double_t > +is > +.IR double . > +.IP * > +2; > +.I double_t > +is > +.IR "long double" . > +.IP * > +Other implementation-defined values. > +.RE > +.IP > +Conforming to: C99 and later; POSIX.1-2001 and later. > +.IP > +See also the > +.I float_t > +type in this page. > .\"------------------------------------- fenv_t -----------------------/ > .TP > .I fenv_t > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/