|
Message-Id: <1be0c7ffc33b9fa8f190cb04e9fab3acc3e8adcc.1684932960.git.Jens.Gustedt@inria.fr> Date: Fri, 26 May 2023 11:25:45 +0200 From: Jens Gustedt <Jens.Gustedt@...ia.fr> To: musl@...ts.openwall.com Subject: [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
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.