|
Message-Id: <2e74418af3093de59eb7651f7938500d06a28e22.1685522953.git.Jens.Gustedt@inria.fr> Date: Wed, 31 May 2023 11:22:53 +0200 From: Jens Gustedt <Jens.Gustedt@...ia.fr> To: musl@...ts.openwall.com Subject: [C23 divers headers 06/17] C23: adapt setjmp.h --- include/setjmp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/setjmp.h b/include/setjmp.h index 1976af23..beb9481c 100644 --- a/include/setjmp.h +++ b/include/setjmp.h @@ -1,5 +1,5 @@ -#ifndef _SETJMP_H -#define _SETJMP_H +#ifndef __STDC_VERSION_SETJMP_H__ +#define __STDC_VERSION_SETJMP_H__ 202311L #ifdef __cplusplus extern "C" { @@ -36,7 +36,7 @@ _Noreturn void _longjmp (jmp_buf, int); #endif int setjmp (jmp_buf) __setjmp_attr; -_Noreturn void longjmp (jmp_buf, int); +__noreturn void longjmp (jmp_buf, int); #define setjmp setjmp -- 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.