mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
add static_assert and protect the other new C11 keyword macros with #ifndef __cplusplus so they don't conflict with C++ keywords.
7 lines
129 B
C
7 lines
129 B
C
#ifndef _STDNORETURN_H
|
|
#define _STDNORETURN_H
|
|
#ifndef __cplusplus
|
|
#include <features.h>
|
|
#define noreturn _Noreturn
|
|
#endif
|
|
#endif
|