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 771 invoked from network); 26 May 2023 09:26:46 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 26 May 2023 09:26:46 -0000 Received: (qmail 18304 invoked by uid 550); 26 May 2023 09:26:15 -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 18031 invoked from network); 26 May 2023 09:26:13 -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=BAW/w1zKpfMEAVPY242fJyRLJ3Lu6zAkWr+TLKKL270=; b=dsJjTLu3cT/376IvPIttxsnug0jjE8qE3n+1B4YHZdIHgjrZRM3zgX7c E/05uY/W3IiHx6nFpVmfOd/AYFRumdm/yhztVNOB3GdMETlh9RPTANpp/ lkInLma8/7K+YLv2LvA2/HaZdgzWAJfq1mdMcQW0OTF5sWXDYR7h5dV1Y g=; 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,193,1681164000"; d="scan'208";a="109847492" From: Jens Gustedt To: musl@lists.openwall.com Date: Fri, 26 May 2023 11:25:45 +0200 Message-Id: <1be0c7ffc33b9fa8f190cb04e9fab3acc3e8adcc.1684932960.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 3/3] 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 78ccccbd..3e1de8d5 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 3816a7cd..7febf76e 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