mirror of https://git.musl-libc.org/git/musl
Browse Source
add static_assert and protect the other new C11 keyword macros with #ifndef __cplusplus so they don't conflict with C++ keywords.master
committed by
Rich Felker
3 changed files with 11 additions and 0 deletions
@ -1,5 +1,7 @@ |
|||
#ifndef _STDNORETURN_H |
|||
#define _STDNORETURN_H |
|||
#ifndef __cplusplus |
|||
#include <features.h> |
|||
#define noreturn _Noreturn |
|||
#endif |
|||
#endif |
|||
|
|||
Loading…
Reference in new issue