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 31586 invoked from network); 24 May 2023 19:40:07 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 24 May 2023 19:40:07 -0000 Received: (qmail 7415 invoked by uid 550); 24 May 2023 19:39:24 -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 7169 invoked from network); 24 May 2023 19:39:22 -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=qE2yvkgD/J87xtZvVgpXi2AOB4A8Uyj3SpueHd8J0qk=; b=k2hYEa2CSMgnFdmOUNHj8xB0t+4sOVeePu1NCE+6kO4PkFboJnGBbqCp 6p4CRhPe15Z2g5A2h8z0gKc6ZKWPKW5637kU4zOOh8dRyF36yJnIPEPzw hleaiDwf2M6hASxI6hmeB8ZMw2q4R9HskDFX1ygk5tdX987xzgKt6Q3ft M=; Authentication-Results: mail2-relais-roc.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,190,1681164000"; d="scan'208";a="109526775" From: Jens Gustedt To: musl@lists.openwall.com Date: Wed, 24 May 2023 21:38:54 +0200 Message-Id: <4454e35d767027ea77cf91c07c6d4b22384d3846.1684932892.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 new stdlib 4/4] C23: add the new include guard to stdlib.h --- include/stdlib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/stdlib.h b/include/stdlib.h index 43173e95..68ccd467 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,5 +1,5 @@ -#ifndef _STDLIB_H -#define _STDLIB_H +#ifndef __STDC_VERSION_STDLIB_H__ +#define __STDC_VERSION_STDLIB_H__ 202304L #ifdef __cplusplus extern "C" { -- 2.34.1