|
Message-Id: <2608718fe62ccf4a212f590803b81d31aa480304.1685534402.git.Jens.Gustedt@inria.fr> Date: Wed, 31 May 2023 16:01:44 +0200 From: Jens Gustedt <Jens.Gustedt@...ia.fr> To: musl@...ts.openwall.com Subject: [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
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.