diff options
Diffstat (limited to 'system/include/libc/assert.h')
-rw-r--r-- | system/include/libc/assert.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libc/assert.h b/system/include/libc/assert.h index 6035227f..8d112839 100644 --- a/system/include/libc/assert.h +++ b/system/include/libc/assert.h @@ -36,10 +36,10 @@ extern "C" { # endif /* !__ASSERT_FUNC */ #endif /* !NDEBUG */ -void _EXFUN(__assert, (const char *, int, const char *)); -/* _ATTRIBUTE ((__noreturn__))); */ -void _EXFUN(__assert_func, (const char *, int, const char *, const char *)); -/* _ATTRIBUTE ((__noreturn__))); */ +void _EXFUN(__assert, (const char *, int, const char *) + _ATTRIBUTE(noreturn)); +void _EXFUN(__assert_func, (const char *, int, const char *, const char *) + _ATTRIBUTE(noreturn)); #ifdef __cplusplus } |