From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x344.google.com (mail-wm1-x344.google.com [IPv6:2a00:1450:4864:20::344]) by sourceware.org (Postfix) with ESMTPS id B0B8E398B471 for ; Thu, 1 Oct 2020 14:35:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B0B8E398B471 Received: by mail-wm1-x344.google.com with SMTP id e17so3183897wme.0 for ; Thu, 01 Oct 2020 07:35:53 -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=z70wUYtajlpXo3Z1GFNhCXhRiVqz/Vs1KvBWrV7UEfQ=; b=XDud5mLAIpvSnQ1uATxEp6qv+N6zTz+4TuyIeZDYH2rJlHdymTk3+MxeZDLkVO3pLB PDrJuO2lU/LLiOQzdOdr9IFYnOSBaxjqHDC/63lwpIau0jj+Jb1VD/o1RU+pAfk9dmSG 1t0LXzqio99eJDef4P0I0QOUZfeEJtpiBwZUapZR9Rvg8/1S/wz9n7HfIHjp7sTbmThP leQj2l0lyD+PhpqsYhJelZa+mk8ox5Rmn6yuHo0fVFJt+1YKIU8F4wLCMVD5uYg9HSKd iUxuGDoQmBO1DGoOSgEolf1N1AeQKWQFrLx3+QpMoogq5UixRPyPvwA8dEgUd4H0/K1+ M6vA== X-Gm-Message-State: AOAM532wjOHHUqI/ME5W5NekHG6sDuZOaGMeNUs5Oe1hKV8Cz7DucKkU S+duFVB2f7dZo06/4Yc9mwA= X-Google-Smtp-Source: ABdhPJw/dRGyJygd1eVLbiL634II4N++X2TU0NsEGpsX0dnJSXhcytA5hAxwrfFSDfrR8JwYcj4EMQ== X-Received: by 2002:a05:600c:2103:: with SMTP id u3mr317005wml.132.1601562952798; Thu, 01 Oct 2020 07:35:52 -0700 (PDT) Received: from localhost.localdomain ([170.253.60.68]) by smtp.googlemail.com with ESMTPSA id p9sm209976wmg.34.2020.10.01.07.35.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 01 Oct 2020 07:35:52 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: Alejandro Colomar , linux-man@vger.kernel.org, gcc@gcc.gnu.org, libc-alpha@sourceware.org Subject: [PATCH v2 0/4] Document [u]int_leastN_t Date: Thu, 1 Oct 2020 16:35:32 +0200 Message-Id: <20201001143535.98990-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.8 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 14:35:55 -0000 This patches are the v2 of the patches 9 to 12 of a previous patchset: https://lore.kernel.org/linux-man/886f5647-2911-951a-b62a-4f9b1ed8850f@gmail.com/T/#t Alejandro Colomar (4): 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) 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/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 + man7/system_data_types.7 | 147 +++++++++++++++++++++++++++++++++++++++ 11 files changed, 157 insertions(+) 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/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 -- 2.28.0