From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x442.google.com (mail-wr1-x442.google.com [IPv6:2a00:1450:4864:20::442]) by sourceware.org (Postfix) with ESMTPS id B79823840C27 for ; Fri, 25 Sep 2020 07:33:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B79823840C27 Received: by mail-wr1-x442.google.com with SMTP id t10so2461581wrv.1 for ; Fri, 25 Sep 2020 00:33:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=CqQEr9T9uuGEo0PcdlXtzfk+/8ip6WKHDoNoQ0qMOUA=; b=L3dPSLelU4F6W8Owa/J96NxpEkRkFt/ozm/z6GCaUp2AjxXpd0rKZO+iHOy+UDlTrW 8+xfVhO2WpMUyoyMOh5zsS1ftT39nLxnI9mN/Q0T5wOok3RGu5u1pKCEa/+3vGdeLW40 QtOrfKOvmiNqi6/3PPVkRi1xVSJQHyZgG4pvsm8pvQKqc2fFglGryvEJztV8aiIVQVJ+ aYXkDtJGHuYC0/+5yxU0Yl8ICY2idxRKgv/+kSmjF+/vF6E7Pm77tDvDlvxmKJ7wWbCf /eKEM1EHnBYwmfAaJkc0q/uZPTWcQDgJmJSWNsNnptDj/jujG+mMKqQ6ZALn28HHyKVj z1aw== X-Gm-Message-State: AOAM532BGeBcCtTAzywbswhES7vNX1dpOtosz/5+75IYZTzQBsJS2lHr vNDqV7c1kJLeDBOV3JJFvAQ= X-Google-Smtp-Source: ABdhPJwLIRDKSZhXDCTVrKn5tw9FxQKS//qix++yP2nRMysrigzE8KGp4AsNvjYwaFnv7woZLvcWdQ== X-Received: by 2002:adf:d4c7:: with SMTP id w7mr2962133wrk.263.1601019179854; Fri, 25 Sep 2020 00:32:59 -0700 (PDT) Received: from localhost.localdomain ([170.253.60.68]) by smtp.googlemail.com with ESMTPSA id n2sm1974314wma.29.2020.09.25.00.32.58 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 25 Sep 2020 00:32:59 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: linux-man@vger.kernel.org, libc-alpha@sourceware.org, Alejandro Colomar Subject: [PATCH 04/10] system_data_types.7: Add float_t Date: Fri, 25 Sep 2020 09:31:35 +0200 Message-Id: <20200925073140.173394-5-colomar.6.4.3@gmail.com> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200925073140.173394-1-colomar.6.4.3@gmail.com> References: <20200925073140.173394-1-colomar.6.4.3@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, KAM_ASCII_DIVIDERS, 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 07:33:01 -0000 Signed-off-by: Alejandro Colomar --- 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 b04457bbf..238b9593b 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -147,6 +147,42 @@ Conforming to: C99 and later; POSIX.1-2001 and later. .IP See also: .BR fenv (3) +.\"------------------------------------- float_t ----------------------/ +.TP +.I float_t +.IP +Include: +.IR . +.IP +The implementation's most efficient floating type at least as wide as +.IR float . +Its type depends on the value of the macro +.BR FLT_EVAL_METHOD : +.RS +.IP * +0; +.I float_t +is +.IR float . +.IP * +1; +.I float_t +is +.IR double . +.IP * +2; +.I float_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 double_t +type in this page. .\"------------------------------------- gid_t ------------------------/ .TP .I gid_t -- 2.28.0