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,RCVD_IN_MSPIKE_H2, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 19721 invoked from network); 24 May 2023 14:02:03 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 24 May 2023 14:02:03 -0000 Received: (qmail 30704 invoked by uid 550); 24 May 2023 14:01:32 -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 30652 invoked from network); 24 May 2023 14:01:32 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=message-id:in-reply-to:references:from:date:to: resent-date:resent-from:subject:resent-message-id: resent-to; bh=kRSe1YTumTrQRMdcjEMpSZ7a3rvyp1cB1ma1Idy09jY=; b=vyiNoEbuupdw8gu6UopLGJiMb9ZqVar9FXo/2zBZMmvYF5wzM9KG9/Il ppjg/e/5GHdjU/l14Lm5j61vBp5NRzUGJzDml5gDlSQDgTcqAl0eyYspH jEkXcjHl30iFmEJzcTZSzukz6QQGkBt1J8cVIYh4CIthxAw6Ku+ACk/xb k=; 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,189,1681164000"; d="scan'208";a="56883706" Message-Id: In-Reply-To: References: From: Jens Gustedt Date: Wed, 19 Apr 2023 08:46:17 +0200 To: musl@lists.openwall.com Resent-Date: Wed, 24 May 2023 15:59:42 +0200 Resent-From: =?UTF-8?B?SuKCkeKCmeKCmw==?= Gustedt Resent-Message-ID: <20230524155942.4c6bb1a9@inria.fr> Resent-To: musl@lists.openwall.com Subject: [musl] [C23 divers headers 17/17] C23: add the __STDC_VERSION_STDDEF_H__ macro Currently we don't know of such a compiler, yet, that fully supports all the features but this will probably be gcc-13 and clang-17. --- include/stddef.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/stddef.h b/include/stddef.h index e4d6b2ef..d85b2c55 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -1,5 +1,5 @@ -#ifndef _STDDEF_H -#define _STDDEF_H +#ifndef _STDC_VERSION_STDDEF_H__ +#define _STDC_VERSION_STDDEF_H__ 201900L #if __cplusplus >= 201103L #define NULL nullptr -- 2.34.1