From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32a.google.com (mail-wm1-x32a.google.com [IPv6:2a00:1450:4864:20::32a]) by sourceware.org (Postfix) with ESMTPS id CCEE53857024 for ; Thu, 1 Oct 2020 10:16:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org CCEE53857024 Received: by mail-wm1-x32a.google.com with SMTP id q9so2321966wmj.2 for ; Thu, 01 Oct 2020 03:16:29 -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:mime-version :content-transfer-encoding; bh=uoB2FuCKSAsI6kIXOPfmwCNt6BZv8rUUkPrUn9rLEWU=; b=IdBaOAJ591Drgg0Kzk4eFn9Kp1SMBIDr7WpczN2e0eBFm3DyVbNtEZnydTfHrGK+zL f1Zh1JKmhSMLqtTngH6l/obqnGaLJ2cFAczd+hlIPmQkosLGgF1Eu+JkGI9Zqdg4+UQf ahLDroWeUGjuFX0zjUEIiBKewABN2W13jURCEFbk3NgRARLBj52l4WjmoqjW5gUtTY8m ijNHPlpoHQpRaLkCp0T/0XtT/CkkAtZj8w8iipoz5aSL01ltf6UjawqOvBeGotPasGCq dXpGjq2PmXM8u2ZSnk1GkyOQKgAC5q4uyydjmlk2B/FSw736a78qX0EBnjqGT0/aGazu Boxg== X-Gm-Message-State: AOAM533Oas/0aRahaSf7dFAMMGiRzJUAvB3dao5kK/kW20wuFBrTsI/e DajVvz1rOjjBkplxbfPYxoxvsJSMlYbEJQ== X-Google-Smtp-Source: ABdhPJwrLlkMbUrUr7pWU9fr54ldFC4OrnbmY9WLOQUz0WXXNYYLz7+lWyepSv70iU2xnjdZBHMyRQ== X-Received: by 2002:a05:600c:24d:: with SMTP id 13mr7822149wmj.86.1601547388840; Thu, 01 Oct 2020 03:16:28 -0700 (PDT) Received: from localhost.localdomain ([170.253.60.68]) by smtp.googlemail.com with ESMTPSA id i15sm8671922wrb.91.2020.10.01.03.16.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 01 Oct 2020 03:16:28 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: colomar.6.4.3@gmail.com, linux-man@vger.kernel.org, libc-alpha@sourceware.org, gcc@gcc.gnu.org Subject: [PATCH 00/16] Fixes; Document remaining stdint.h types Date: Thu, 1 Oct 2020 12:15:44 +0200 Message-Id: <20201001101559.77163-1-colomar.6.4.3@gmail.com> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, 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: Thu, 01 Oct 2020 10:16:31 -0000 Hi Michael, Here are a few fixes (including one removing .br), and then the remaining stdint types. Cheers, Alex Alejandro Colomar (16): malloc_get_state.3: ffix system_data_types.7: srcfix system_data_types.7: srcfix system_data_types.7: srcfix system_data_types.7: Add int_fastN_t family of types int_fast8_t.3, int_fast16_t.3, int_fast32_t.3, int_fast64_t.3, int_fastN_t.3: New links to system_data_types(7) system_data_types.7: Add uint_fastN_t family of types uint_fast8_t.3, uint_fast16_t.3, uint_fast32_t.3, uint_fast64_t.3, uint_fastN_t.3: New links to system_data_types(7) system_data_types.7: Add int_leastN_t family of types int_least8_t.3, int_least16_t.3, int_least32_t.3, int_least64_t.3, int_leastN_t.3: New links to system_data_types(7) system_data_types.7: Add uint_leastN_t family of types uint_least8_t.3, uint_least16_t.3, uint_least32_t.3, uint_least64_t.3, uint_leastN_t.3: New links to system_data_types(7) system_data_types.7: Add 'intptr_t' intptr_t.3: New link to system_data_types(7) system_data_types.7: Add 'uintptr_t' uintptr_t.3: New link to system_data_types(7) man3/int_fast16_t.3 | 1 + man3/int_fast32_t.3 | 1 + man3/int_fast64_t.3 | 1 + man3/int_fast8_t.3 | 1 + man3/int_fastN_t.3 | 1 + man3/int_least16_t.3 | 1 + man3/int_least32_t.3 | 1 + man3/int_least64_t.3 | 1 + man3/int_least8_t.3 | 1 + man3/int_leastN_t.3 | 1 + man3/intptr_t.3 | 1 + man3/malloc_get_state.3 | 2 +- man3/uint_fast16_t.3 | 1 + man3/uint_fast32_t.3 | 1 + man3/uint_fast64_t.3 | 1 + man3/uint_fast8_t.3 | 1 + man3/uint_fastN_t.3 | 1 + man3/uint_least16_t.3 | 1 + man3/uint_least32_t.3 | 1 + man3/uint_least64_t.3 | 1 + man3/uint_least8_t.3 | 1 + man3/uint_leastN_t.3 | 1 + man3/uintptr_t.3 | 1 + man7/system_data_types.7 | 590 ++++++++++++++++++++++++++++++++++----- 24 files changed, 540 insertions(+), 74 deletions(-) create mode 100644 man3/int_fast16_t.3 create mode 100644 man3/int_fast32_t.3 create mode 100644 man3/int_fast64_t.3 create mode 100644 man3/int_fast8_t.3 create mode 100644 man3/int_fastN_t.3 create mode 100644 man3/int_least16_t.3 create mode 100644 man3/int_least32_t.3 create mode 100644 man3/int_least64_t.3 create mode 100644 man3/int_least8_t.3 create mode 100644 man3/int_leastN_t.3 create mode 100644 man3/intptr_t.3 create mode 100644 man3/uint_fast16_t.3 create mode 100644 man3/uint_fast32_t.3 create mode 100644 man3/uint_fast64_t.3 create mode 100644 man3/uint_fast8_t.3 create mode 100644 man3/uint_fastN_t.3 create mode 100644 man3/uint_least16_t.3 create mode 100644 man3/uint_least32_t.3 create mode 100644 man3/uint_least64_t.3 create mode 100644 man3/uint_least8_t.3 create mode 100644 man3/uint_leastN_t.3 create mode 100644 man3/uintptr_t.3 -- 2.28.0