1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

LibC: Don't use C++ attribute syntax in C-visible headers

Fixes errors when building Clang's compiler-rt, which compiles in C11
more.
This commit is contained in:
Daniel Bertalan 2021-06-29 10:31:48 +02:00 committed by Ali Mohammad Pur
parent 3162c9e214
commit 842249aff5
4 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@
__BEGIN_DECLS
#ifdef DEBUG
[[noreturn]] void __assertion_failed(const char* msg);
__attribute__((noreturn)) void __assertion_failed(const char* msg);
# define __stringify_helper(x) # x
# define __stringify(x) __stringify_helper(x)
# define assert(expr) \
@ -24,7 +24,7 @@ __BEGIN_DECLS
# define VERIFY_NOT_REACHED() _abort()
#endif
[[noreturn]] void _abort();
__attribute__((noreturn)) void _abort();
#ifndef __cplusplus
# define static_assert _Static_assert