From patchwork Thu Oct 14 21:55:31 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stafford Horne X-Patchwork-Id: 46252 X-Patchwork-Delegate: azanella@linux.vnet.ibm.com Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C42D83857C4C for ; Thu, 14 Oct 2021 21:55:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C42D83857C4C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1634248559; bh=LrVbHZZwnzXyCG2kSIb/6qx1D4MhgGmKEqy1Bi32wsk=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=qKA5PktHh4PhrsfjxPl3MjBCDKowcuex8TLSwiS/64ywT2FxBmvFBo8rWG22MnLdT jgNCqzjOrSye5YwlrcT+/RwHI+fcYXK8C8fsc0YZHZATqEzA1o6P6cm3t3nLMp8q9U +o2M8yP6xCGYLjrgBlrw1xgpPN+bnzFolTQhrPtk= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from mail-pj1-x102b.google.com (mail-pj1-x102b.google.com [IPv6:2607:f8b0:4864:20::102b]) by sourceware.org (Postfix) with ESMTPS id 777BD3858419 for ; Thu, 14 Oct 2021 21:55:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 777BD3858419 Received: by mail-pj1-x102b.google.com with SMTP id na16-20020a17090b4c1000b0019f5bb661f9so5837243pjb.0 for ; Thu, 14 Oct 2021 14:55:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=LrVbHZZwnzXyCG2kSIb/6qx1D4MhgGmKEqy1Bi32wsk=; b=aiOrGCQ0KerwPz9oK3b/9BwgRLth9kRSVA8OHlT8OTVeg7yW6hXA1K83o0m0qJzWBG +FGrhp1X+NjVpuRSZ7ja143Q2+ObQaIn9fJtrDX5CY9r4ypKPyJt3GnIFuBjGwQKe4yt q6B7GoQB1mi9xiwQXXO6iDIqy7C6o+q3sv5IuCvWl9kcGu+v8rhueIIDZ9sL5tn3RKwS kz1Cwir9wsKm4p6uJk7fiXe0V7pg591pfrwyqrKbppccXh3QKz4R8pM9+6tel/eSqOqJ OxVurTTevud0NfsBU0yvCQhzWDk8t8onmJ+d7jv+yM+KZY3jbF3m2aVsVbVGpArT2jKb gYhw== X-Gm-Message-State: AOAM531gOpobeC5ueYNgub2v19CJf5IYqACb5idbelbPuchbdOlGbeq4 WNXWsS94ETG33S5wfK1JzOQ3Zh7qKu0= X-Google-Smtp-Source: ABdhPJxMU+pHMfOyML5KoKQ+UrFhqEB2Dk9x7sqM8b7OQnjlqqayI/bjWZPhsLm651yMBp8CkRvu8w== X-Received: by 2002:a17:90a:b948:: with SMTP id f8mr4662144pjw.129.1634248536247; Thu, 14 Oct 2021 14:55:36 -0700 (PDT) Received: from localhost ([2409:10:24a0:4700:e8ad:216a:2a9d:6d0c]) by smtp.gmail.com with ESMTPSA id x23sm3584426pfq.146.2021.10.14.14.55.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 14 Oct 2021 14:55:35 -0700 (PDT) To: GLIBC patches Subject: [PATCH] manual: Update _TIME_BITS to clarify it's user defined Date: Fri, 15 Oct 2021 06:55:31 +0900 Message-Id: <20211014215531.2618113-1-shorne@gmail.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 X-Spam-Status: No, score=-10.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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-Patchwork-Original-From: Stafford Horne via Libc-alpha From: Stafford Horne Reply-To: Stafford Horne Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" The current language reads "This macro determines...", changing to "Define this macro...". This is consistent with other feature macro documentation language. When I first read the previous language it seems to indicate that the macro is already defined. By changing the language to "Define this macro..." it's clear that its the user's responsibility to define it. Reviewed-by: Adhemerval Zanella --- manual/creature.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/creature.texi b/manual/creature.texi index c13de52f1f..6193e0735c 100644 --- a/manual/creature.texi +++ b/manual/creature.texi @@ -171,8 +171,8 @@ This macro was introduced as part of the Large File Support extension @end defvr @defvr Macro _TIME_BITS -This macro determines the bit size of @code{time_t}, and therefore the -bit size of all @code{time_t}-derived types and the prototypes of all +Define this macro to control the bit size of @code{time_t}, and therefore +the bit size of all @code{time_t}-derived types and the prototypes of all related functions. @enumerate