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 7205 invoked from network); 31 May 2023 14:02:23 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 31 May 2023 14:02:23 -0000 Received: (qmail 3295 invoked by uid 550); 31 May 2023 14:02:11 -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 3238 invoked from network); 31 May 2023 14:02:10 -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=QmT6y7MPbYA9aOiGbgfLedB+XK69b13NfNvgW3wCk9U=; b=GQmtsGLmemKQe/n9ufTEmnQaBdjsQJXYm3RZ8C3vQIs6fr8TCIqNt/y6 QuhWZYcrT9sSxHrQtz6dXXhW9Leafg5xAI2rK23xKDnKVIcFmbbj3khld SHh+4cJ0qp5AmF1VoLpDQGCXcyPhNW+yLwHDoN74YKPZJSpcijS4Kd/He 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,207,1681164000"; d="scan'208";a="57461910" From: Jens Gustedt To: musl@lists.openwall.com Date: Wed, 31 May 2023 16:01:44 +0200 Message-Id: <2608718fe62ccf4a212f590803b81d31aa480304.1685534402.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 string conversion 2/2] C23: add the new include guards for string.h and wchar.h --- include/string.h | 4 ++-- include/wchar.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/string.h b/include/string.h index 61768cf7..733feb25 100644 --- a/include/string.h +++ b/include/string.h @@ -1,5 +1,5 @@ -#ifndef _STRING_H -#define _STRING_H +#ifndef __STDC_VERSION_STRING_H__ +#define __STDC_VERSION_STRING_H__ 202311L #ifdef __cplusplus extern "C" { diff --git a/include/wchar.h b/include/wchar.h index 194f7f8f..fd727c2b 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,5 +1,5 @@ -#ifndef _WCHAR_H -#define _WCHAR_H +#ifndef __STDC_VERSION_WCHAR_H__ +#define __STDC_VERSION_WCHAR_H__ 202311L #ifdef __cplusplus extern "C" { -- 2.34.1