mirror of
git://git.musl-libc.org/musl
synced 2024-12-15 19:25:55 +00:00
70729de075
add static_assert and protect the other new C11 keyword macros with #ifndef __cplusplus so they don't conflict with C++ keywords.
8 lines
129 B
C
8 lines
129 B
C
#ifndef _STDNORETURN_H
|
|
#define _STDNORETURN_H
|
|
#ifndef __cplusplus
|
|
#include <features.h>
|
|
#define noreturn _Noreturn
|
|
#endif
|
|
#endif
|