From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 31490 invoked from network); 16 Apr 2021 00:36:09 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 16 Apr 2021 00:36:09 -0000 Received: (qmail 21914 invoked by uid 550); 16 Apr 2021 00:36:04 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 21878 invoked from network); 16 Apr 2021 00:36:04 -0000 X-Virus-Scanned: Debian amavisd-new at disroot.org From: =?UTF-8?q?=C3=89rico=20Nogueira?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1618533351; bh=szFAIXtDkPZJcy05gVetrB0u7G2F6EKoykdbwnn/2oQ=; h=From:To:Cc:Subject:Date; b=J71gz27z3NLcsp86oPvqVUm40HTrx8fVjGa1soEtqSGdUATJ3MP2BW13isyuGrsQH PmaqEqGGfqz3c5SG81PbjGla/iVdtl267M7c2UtquIO6nBWn9koZ/mDf895qtt5/O5 V258PMMalC7iDlZuaT+uM8LTkVprRoZWCCjW05/uEPXwTfENhGxf7E6dTkZluqCxfj w/k+LciS5dVBhRWW7TOU87bqSh19SQb1P97iV4fiAhmPUIkaBMODAoC3SFZmrryk4g /4uAvlNjpvJGUCx3ZHKS9od9TNNMDzT9NsMS1+hyvW47UNrBEvOXIbWUa1x/HFY5WG pH9vGh+9T08gw== To: musl@lists.openwall.com Cc: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Thu, 15 Apr 2021 21:35:20 -0300 Message-Id: <20210416003521.2147-1-ericonr@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [musl] [PATCH 1/2] define __STDC_UTF_{16,32}__ macros these macros are used to indicate that the implementation uses, respectively, utf-16 and utf-32 encoding for char16_t and char32_t. --- include/stdc-predef.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/stdc-predef.h b/include/stdc-predef.h index f8cd4b89..af1a2799 100644 --- a/include/stdc-predef.h +++ b/include/stdc-predef.h @@ -7,4 +7,7 @@ #define __STDC_IEC_559__ 1 #endif +#define __STDC_UTF_16__ 1 +#define __STDC_UTF_32__ 1 + #endif -- 2.31.1