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=-1.5 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_LOW,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 27472 invoked from network); 31 May 2023 09:26:04 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 31 May 2023 09:26:04 -0000 Received: (qmail 1838 invoked by uid 550); 31 May 2023 09:23:45 -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 1169 invoked from network); 31 May 2023 09:23:34 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=k1bOfalF1cBxd5DFVW2Fz495aQVTjexj+5QNfGxJpGc=; b=DdfBpEYGP5Jx1qMDt2FezFB1/YMnP6UzhiEsDH3H9IDedF1Cnw5Blk/g tYoj85z2JLv78yyIRyqW9NdoxI06oiF+eyeJDwTqTCc/4ODBlYViiKHnr U5IRQpSMYfAHgRvKncMCcYRjldxAotyXEvTS7K0SM6CxV0I3EyO7Y+yM3 o=; Authentication-Results: mail3-relais-sop.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=Jens.Gustedt@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="6.00,205,1681164000"; d="scan'208";a="57428754" From: Jens Gustedt To: musl@lists.openwall.com Date: Wed, 31 May 2023 11:23:00 +0200 Message-Id: <6e967cd168d162c99a396ec11ddf45dcfc3e7fc1.1685522953.git.Jens.Gustedt@inria.fr> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [musl] [C23 divers headers 13/17] C23: add the __STDC_VERSION_ASSERT_H__ macro --- include/assert.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/assert.h b/include/assert.h index 034c4aa7..0184400c 100644 --- a/include/assert.h +++ b/include/assert.h @@ -2,6 +2,8 @@ #undef assert +#define __STDC_VERSION_ASSERT_H__ 202300L + // Ensure that this version only accepts arguments that resolve to one // C expression after preprocessing. #ifndef __ASSERT_EXPRESSION -- 2.34.1